fix copy&paste bug in cythonrun
authorStefan Behnel <scoder@users.berlios.de>
Mon, 11 Apr 2011 07:14:56 +0000 (09:14 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Mon, 11 Apr 2011 07:14:56 +0000 (09:14 +0200)
bin/cythonrun

index 0cd1c2898d22389a238a8ea5a49b0dd68f571b41..9f0970ae9a84043f16943e8392876100531f6493 100755 (executable)
@@ -32,7 +32,7 @@ def runcmd(cmd, shell=True):
     cmd = ' '.join(cmd)
     if DEBUG:
         print(cmd)
-    returncode = subprocess.call(cmd, shell=True)
+    returncode = subprocess.call(cmd, shell=shell)
     if returncode:
         sys.exit(returncode)