From: GregNoel Date: Fri, 12 Sep 2008 21:15:57 +0000 (+0000) Subject: Sigh, I made the last update from the wrong tree, which had a typo X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fd0ecc564ba3962d44f1c434cdbfcc0666dd19b9;p=scons.git Sigh, I made the last update from the wrong tree, which had a typo git-svn-id: http://scons.tigris.org/svn/scons/trunk@3391 fdb21ef1-2011-0410-befe-b5e4ea1792b1 --- diff --git a/src/engine/SCons/Environment.py b/src/engine/SCons/Environment.py index f416bb07..cfabb48a 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()