summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authortc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-12 23:01:48 +0000
committertc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-12 23:01:48 +0000
commit58f2cdffde416d3e7d659a342358d26ed4a8b34f (patch)
tree44f824a54daf6f62912f2c96cbe70c49c65d25f4 /build
parentadca14d0ef830c55e8ab08b64945fc0bcc6e433d (diff)
downloadchromium_src-58f2cdffde416d3e7d659a342358d26ed4a8b34f.zip
chromium_src-58f2cdffde416d3e7d659a342358d26ed4a8b34f.tar.gz
chromium_src-58f2cdffde416d3e7d659a342358d26ed4a8b34f.tar.bz2
add distcc_dir to the list of pass through vars
Review URL: http://codereview.chromium.org/10658 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5316 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r--build/SConscript.main2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/SConscript.main b/build/SConscript.main
index 10792fa..e94d619 100644
--- a/build/SConscript.main
+++ b/build/SConscript.main
@@ -430,7 +430,7 @@ for envvar in ('CC', 'CXX'):
# Copy these environment variables from the outer environment to the
# environment that the build commands run in.
# $HOME is needed by distcc so it can find its lock file.
-for envvar in ('HOME', 'DISTCC_HOSTS', 'CCACHE_DIR'):
+for envvar in ('HOME', 'DISTCC_DIR', 'DISTCC_HOSTS', 'CCACHE_DIR'):
if envvar in os.environ:
linux_env['ENV'][envvar] = os.environ[envvar]