[Scipy-svn] r5398 - branches/0.7.x/scipy/weave

scipy-svn at scipy.org scipy-svn at scipy.org
Thu Jan 8 09:52:45 EST 2009


Author: cdavid
Date: 2009-01-08 08:52:42 -0600 (Thu, 08 Jan 2009)
New Revision: 5398

Modified:
   branches/0.7.x/scipy/weave/build_tools.py
Log:
Fix syntax error.

Modified: branches/0.7.x/scipy/weave/build_tools.py
===================================================================
--- branches/0.7.x/scipy/weave/build_tools.py	2009-01-08 14:46:09 UTC (rev 5397)
+++ branches/0.7.x/scipy/weave/build_tools.py	2009-01-08 14:52:42 UTC (rev 5398)
@@ -355,7 +355,7 @@
         # the path variable. and will occasionlly mess things up
         # so much that gcc is lost in the path. (Occurs in test
         # scripts)
-        result = not os.system(cmd)
+        result = not os.system(" ".join(cmd))
     return result
 
 def msvc_exists():




More information about the Scipy-svn mailing list