diff options
author | David Cournapeau <cournape@gmail.com> | 2008-03-22 06:25:07 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-03-22 06:25:07 +0000 |
commit | 466fa4bf1321facfd80c08e93c512c479658ab25 (patch) | |
tree | ac37f9e00e4734d6908c254ba979bf7377a27a0e /numpy/distutils/fcompiler/compaq.py | |
parent | 6e6c5c4fdb6548ef6eae953ce453a1a89c290fc1 (diff) | |
download | numpy-466fa4bf1321facfd80c08e93c512c479658ab25.tar.gz |
Add VisualCompaq compiler to the list of fortran compilers if platform is cygwin.
Diffstat (limited to 'numpy/distutils/fcompiler/compaq.py')
-rw-r--r-- | numpy/distutils/fcompiler/compaq.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/compaq.py b/numpy/distutils/fcompiler/compaq.py index 7b60bfdae..9d6d9c5ab 100644 --- a/numpy/distutils/fcompiler/compaq.py +++ b/numpy/distutils/fcompiler/compaq.py @@ -8,7 +8,7 @@ from numpy.distutils.fcompiler import FCompiler from distutils.errors import DistutilsPlatformError compilers = ['CompaqFCompiler'] -if os.name != 'posix': +if os.name != 'posix' or sys.platform[:6] == 'cygwin' : # Otherwise we'd get a false positive on posix systems with # case-insensitive filesystems (like darwin), because we'll pick # up /bin/df |