mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Try more Windows fix?
This commit is contained in:
@@ -30,7 +30,12 @@ def protoencode_single(self, name, srcs: Targets, proto, symbol):
|
||||
ins=srcs,
|
||||
outs=[f"={name}.cc"],
|
||||
deps=[r],
|
||||
commands=["$[deps[0]] $[ins] $[outs] " + symbol],
|
||||
commands=[
|
||||
# Materialise symbolic links (for Windows).
|
||||
"cp -L $[ins[0]] $[ins[0]].real",
|
||||
"mv $[ins[0]].real $[ins[0]]",
|
||||
"$[deps[0]] $[ins] $[outs] " + symbol
|
||||
],
|
||||
label="PROTOENCODE",
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user