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/exec.hh | |
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/exec.hh')
-rw-r--r-- | src/exec.hh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/exec.hh b/src/exec.hh index 9dc8e0cd029c..8d410e404383 100644 --- a/src/exec.hh +++ b/src/exec.hh @@ -4,6 +4,8 @@ #include <string> #include <map> +#include "util.hh" + using namespace std; @@ -12,7 +14,8 @@ typedef map<string, string> Environment; /* Run a program. */ -void runProgram(const string & program, Environment env); +void runProgram(const string & program, + const Strings & args, const Environment & env); #endif /* !__EXEC_H */ |