summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Environment.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2002-09-17 06:51:03 (GMT)
committerSteven Knight <knight@baldmt.com>2002-09-17 06:51:03 (GMT)
commit72042342ebcbc24c523fb4e1413821c73e585a2a (patch)
tree05f0d86550ef1a5f38cadf1a2fc463526b796602 /src/engine/SCons/Environment.py
parentb04744713085a486615cbef5f489dc522988fb36 (diff)
downloadSCons-72042342ebcbc24c523fb4e1413821c73e585a2a.zip
SCons-72042342ebcbc24c523fb4e1413821c73e585a2a.tar.gz
SCons-72042342ebcbc24c523fb4e1413821c73e585a2a.tar.bz2
Make sure we can find tools using the PATH specified during Environment() instantiation.
Diffstat (limited to 'src/engine/SCons/Environment.py')
-rw-r--r--src/engine/SCons/Environment.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/engine/SCons/Environment.py b/src/engine/SCons/Environment.py
index cd7aced..d8a87a4 100644
--- a/src/engine/SCons/Environment.py
+++ b/src/engine/SCons/Environment.py
@@ -130,6 +130,7 @@ class Environment:
platform(self)
if tools is None:
tools = ['default']
+ apply(self.Replace, (), kw)
for tool in tools:
if SCons.Util.is_String(tool):
tool = SCons.Tool.Tool(tool)