summaryrefslogtreecommitdiff
path: root/numpy/core/setup.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r--numpy/core/setup.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py
index 4ca6672e6..dce7477d1 100644
--- a/numpy/core/setup.py
+++ b/numpy/core/setup.py
@@ -151,15 +151,15 @@ def configuration(parent_package='',top_path=None):
join('src','_isnan.c'),
join('src','ucsnarrow.c'),
join('include','numpy','*object.h'),
- join('include','fenv.c'),
- join('include','fenv.h'),
+ 'include/numpy/fenv/fenv.c',
+ 'include/numpy/fenv/fenv.h',
join(codegen_dir,'genapi.py'),
join(codegen_dir,'*.txt')
]
- # Don't install fenv unless we need them.
+ # Don't install fenv unless we need them.
if sys.platform == 'cygwin':
- config.add_data_files(join('include','fenv.*'))
+ config.add_data_dir('include/numpy/fenv')
config.add_extension('multiarray',
sources = [join('src','multiarraymodule.c'),