From: GregNoel Date: Fri, 12 Sep 2008 21:22:10 +0000 (+0000) Subject: Sigh, I keep doing it, another typo X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4b538b23082742ffd9231cbc96c832f17be3b03a;p=scons.git Sigh, I keep doing it, another typo git-svn-id: http://scons.tigris.org/svn/scons/trunk@3392 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/src/engine/SCons/Environment.py b/src/engine/SCons/Environment.py index cfabb48a..93776100 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(self, command, **kw) + p = apply(SCons.Action._subproc, (self, command), kw) out = p.stdout.read() p.stdout.close() err = p.stderr.read()