diff options
Diffstat (limited to 'numpy/distutils/fcompiler')
-rw-r--r-- | numpy/distutils/fcompiler/compaq.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/distutils/fcompiler/compaq.py b/numpy/distutils/fcompiler/compaq.py index ca2595e83..710752b49 100644 --- a/numpy/distutils/fcompiler/compaq.py +++ b/numpy/distutils/fcompiler/compaq.py @@ -89,6 +89,10 @@ class CompaqVisualFCompiler(FCompiler): if not "vcvarsall.bat" in str(e): print "Unexpected IOError in", __file__ raise e + except ValueError, e: + if not "path']" in str(e): + print "Unexpected ValueError in", __file__ + raise e executables = { 'version_cmd' : ['<F90>', "/what"], |