[Numpy-svn] r6203 - trunk/numpy/distutils/fcompiler

numpy-svn at scipy.org numpy-svn at scipy.org
Sat Dec 27 05:43:45 EST 2008


Author: cdavid
Date: 2008-12-27 04:43:41 -0600 (Sat, 27 Dec 2008)
New Revision: 6203

Modified:
   trunk/numpy/distutils/fcompiler/compaq.py
Log:
BUG (#970): this commit should fix the actual bug, which albeeit linked to commir r6200, was caused in anoter code path.

Modified: trunk/numpy/distutils/fcompiler/compaq.py
===================================================================
--- trunk/numpy/distutils/fcompiler/compaq.py	2008-12-27 10:32:05 UTC (rev 6202)
+++ trunk/numpy/distutils/fcompiler/compaq.py	2008-12-27 10:43:41 UTC (rev 6203)
@@ -85,6 +85,10 @@
                 print 'Ignoring "%s" (I think it is msvccompiler.py bug)' % (msg)
             else:
                 raise
+        except IOError, e:
+            if not "vcvarsall.bat" in str(e):
+                print "Unexpected IOError in", __file__
+                raise e
 
     executables = {
         'version_cmd'  : ['<F90>', "/what"],




More information about the Numpy-svn mailing list