diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2021-03-26 16:03:29 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2021-04-02 12:07:38 +0200 |
commit | b3bc26dc284cf73e97b88c9979d49368d07e686c (patch) | |
tree | 59ab65ede17e84b2fa463a4d27eaaa92fd0f8b85 /libbuild2/script | |
parent | 5f768f4f3e6e9e1b7310a0e8b09a97bf6d0115ea (diff) |
Add support for propagating project environment
Diffstat (limited to 'libbuild2/script')
-rw-r--r-- | libbuild2/script/run.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libbuild2/script/run.cxx b/libbuild2/script/run.cxx index 0b49dea..3faa35c 100644 --- a/libbuild2/script/run.cxx +++ b/libbuild2/script/run.cxx @@ -2126,8 +2126,8 @@ namespace build2 // Note that CWD and builtin-escaping character '^' are not printed. // - const small_vector<string, 4>& evs (vs); - process_env pe (resolve ? pp : c.program, evs); + const small_vector<string, 4>& evars (vs); + process_env pe (resolve ? pp : c.program, evars); if (verb >= 2) print_process (pe, args); |