Actually use the arguments with the resolved executable path.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@82527 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Daniel Dunbar 2009-09-22 06:09:13 +00:00
parent 57d6903dea
commit 4b78aa3f56

View File

@ -110,7 +110,7 @@ def executeShCmd(cmd, cfg, cwd, results):
if not args[0]:
raise InternalShellError(j, '%r: command not found' % j.args[0])
procs.append(subprocess.Popen(j.args, cwd=cwd,
procs.append(subprocess.Popen(args, cwd=cwd,
stdin = stdin,
stdout = stdout,
stderr = stderr,