diff options
author | David Cournapeau <cournape@gmail.com> | 2009-03-12 14:01:39 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-03-12 14:01:39 +0000 |
commit | 6f60d2c76ece73e8f37f2ae1014cc26b485495d0 (patch) | |
tree | 8e1d7c2755e1c96418c62d77c03fcdd2b4123dad /numpy | |
parent | 950139d363b61b0c8b228b905740027985133f5b (diff) | |
download | numpy-6f60d2c76ece73e8f37f2ae1014cc26b485495d0.tar.gz |
Make the gfortran/vs2003 hack source file known to distutils.
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/distutils/setup.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/distutils/setup.py b/numpy/distutils/setup.py index b16225f41..afc1fadd2 100644 --- a/numpy/distutils/setup.py +++ b/numpy/distutils/setup.py @@ -7,6 +7,7 @@ def configuration(parent_package='',top_path=None): config.add_subpackage('fcompiler') config.add_data_dir('tests') config.add_data_files('site.cfg') + config.add_data_files('mingw/gfortran_vs2003_hack.c') config.make_config_py() return config |