diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-08-15T12·32+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2003-08-15T12·32+0000 |
commit | 555347744d116b0152a04d4fdb08258276d34199 (patch) | |
tree | d3331f1ec3b67671d210c0cc0a85d6c709bd4924 /src/normalise.cc | |
parent | e374dbf89b0ba9a4f5835ef9ac30eda6df1dce6a (diff) |
* Derivation expressions now can specify arguments to be passed to the
builder. Note that this unfortunately causes all Fix-computed hashes to change.
Diffstat (limited to 'src/normalise.cc')
-rw-r--r-- | src/normalise.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/normalise.cc b/src/normalise.cc index 2fa6f7f4011c..3d025d5f5aa1 100644 --- a/src/normalise.cc +++ b/src/normalise.cc @@ -169,7 +169,7 @@ FSId normaliseFState(FSId id, FSIdSet pending) /* Run the builder. */ msg(lvlChatty, format("building...")); - runProgram(fs.derive.builder, env); + runProgram(fs.derive.builder, fs.derive.args, env); msg(lvlChatty, format("build completed")); } else |