diff options
author | csilvers <csilvers@01de4be4-8c4a-0410-9132-4925637da917> | 2008-06-10 05:51:33 +0000 |
---|---|---|
committer | csilvers <csilvers@01de4be4-8c4a-0410-9132-4925637da917> | 2008-06-10 05:51:33 +0000 |
commit | 7e1d20b3effb54e8e34ada05ece620b2100eac81 (patch) | |
tree | ea93ddfa64ff76b4faf6baeefa9e5336a19928e7 | |
parent | ae8c20d94f1d051f8e41ba2b18e44758421bb2d9 (diff) | |
download | distcc-7e1d20b3effb54e8e34ada05ece620b2100eac81.tar.gz |
When I moved the envvar declarations to inside the 'eval', I had to
quote them to protect them from the extra level of evaluation, but I
had failed to do this. This change makes it so I do.
Tested by running 'make pump-maintainer-check on linux (ubuntu).
Detected and reviewed by fergus
git-svn-id: http://distcc.googlecode.com/svn/trunk@505 01de4be4-8c4a-0410-9132-4925637da917
-rwxr-xr-x | pump.in | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -276,8 +276,8 @@ StartIncludeServer() { # which will pass '*' to the include server (that is, the string consisting # of one asterisk) without filename expansion. eval \ - PYTHONOPTIMIZE=$PYTHONOPTIMIZE \ - PYTHONPATH="$pythonpath::$PYTHONPATH" \ + "PYTHONOPTIMIZE='$PYTHONOPTIMIZE' " \ + "PYTHONPATH='$pythonpath::$PYTHONPATH' " \ "'$PYTHON'" \ "'$include_server'" \ --port "'$socket'" \ |