summaryrefslogtreecommitdiff
path: root/numpy/core/setup.py
diff options
context:
space:
mode:
authorPearu Peterson <pearu.peterson@gmail.com>2006-02-18 13:07:25 +0000
committerPearu Peterson <pearu.peterson@gmail.com>2006-02-18 13:07:25 +0000
commit54d08c6580488b8cad46b0512233de125c574699 (patch)
tree3429d198f248a056942c285c66bd02a013f4bfb8 /numpy/core/setup.py
parentcfffff3dee854e924d11ad80ad0a9024fe83170d (diff)
downloadnumpy-54d08c6580488b8cad46b0512233de125c574699.tar.gz
Moved fenv codes to numpy/include/fenv/ as mingw32 compiler was picking up wrong fenv.h header file.
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'),