Sigh, I keep doing it, another typo
authorGregNoel <GregNoel@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Fri, 12 Sep 2008 21:22:10 +0000 (21:22 +0000)
committerGregNoel <GregNoel@fdb21ef1-2011-0410-befe-b5e4ea1792b1>
Fri, 12 Sep 2008 21:22:10 +0000 (21:22 +0000)
git-svn-id: http://scons.tigris.org/svn/scons/trunk@3392 fdb21ef1-2011-0410-befe-b5e4ea1792b1

src/engine/SCons/Environment.py

index cfabb48afb6182d87c10b2fd735337d5a818998a..9377610042321e65394d5c491091b2f689e2a9ed 100644 (file)
@@ -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(self, command, **kw)
+        p = apply(SCons.Action._subproc, (self, command), kw)
         out = p.stdout.read()
         p.stdout.close()
         err = p.stderr.read()