summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Environment.py
diff options
context:
space:
mode:
authorGreg Noel <GregNoel@tigris.org>2008-09-12 21:15:57 (GMT)
committerGreg Noel <GregNoel@tigris.org>2008-09-12 21:15:57 (GMT)
commit27542d24834294d072c4ea1ca340195516cf9445 (patch)
tree867b209cd1a29fb6f2da3c5e2b88430432e77bb2 /src/engine/SCons/Environment.py
parent0362515ef75b8cefe0222e2c079316e2f8285c40 (diff)
downloadSCons-27542d24834294d072c4ea1ca340195516cf9445.zip
SCons-27542d24834294d072c4ea1ca340195516cf9445.tar.gz
SCons-27542d24834294d072c4ea1ca340195516cf9445.tar.bz2
Sigh, I made the last update from the wrong tree, which had a typo
Diffstat (limited to 'src/engine/SCons/Environment.py')
-rw-r--r--src/engine/SCons/Environment.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/engine/SCons/Environment.py b/src/engine/SCons/Environment.py
index f416bb0..cfabb48 100644
--- a/src/engine/SCons/Environment.py
+++ b/src/engine/SCons/Environment.py
@@ -535,8 +535,8 @@ class SubstitutionEnvironment:
# othewise force a shell
if not SCons.Util.is_List(command): kw['shell'] = True
# run constructed command
- #FUTURE p = Scons.Action._subproc(env, command, **kw)
- p = apply(Scons.Action._subproc, (env, command), kw)
+ #FUTURE p = SCons.Action._subproc(env, command, **kw)
+ p = apply(SCons.Action._subproc, (env, command), kw)
out = p.stdout.read()
p.stdout.close()
err = p.stderr.read()