mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
Make build with the new ab --- but the tests fail.
This commit is contained in:
@@ -58,7 +58,7 @@ def objectify(self, name, src: Target, symbol):
|
||||
replaces=self,
|
||||
ins=["build/_objectify.py", src],
|
||||
outs=[f"={basename(filenameof(src))}.h"],
|
||||
commands=["$(PYTHON) {ins[0]} {ins[1]} " + symbol + " > {outs}"],
|
||||
commands=["$(PYTHON) $[ins[0]] $[ins[1]] " + symbol + " > $[outs]"],
|
||||
label="OBJECTIFY",
|
||||
)
|
||||
|
||||
@@ -78,7 +78,7 @@ def test(
|
||||
replaces=self,
|
||||
ins=[command],
|
||||
outs=["=sentinel"],
|
||||
commands=["{ins[0]}", "touch {outs}"],
|
||||
commands=["$[ins[0]]", "touch $[outs]"],
|
||||
deps=deps,
|
||||
label=label,
|
||||
)
|
||||
@@ -87,7 +87,7 @@ def test(
|
||||
replaces=self,
|
||||
ins=ins,
|
||||
outs=["=sentinel"],
|
||||
commands=commands + ["touch {outs}"],
|
||||
commands=commands + ["touch $[outs]"],
|
||||
deps=deps,
|
||||
label=label,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user