diff options
Diffstat (limited to 'numpy/distutils/command/install_headers.py')
-rw-r--r-- | numpy/distutils/command/install_headers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/command/install_headers.py b/numpy/distutils/command/install_headers.py index 043f024f5..6512d5103 100644 --- a/numpy/distutils/command/install_headers.py +++ b/numpy/distutils/command/install_headers.py @@ -13,8 +13,8 @@ class install_headers (old_install_headers): for header in headers: if isinstance(header,tuple): # Kind of a hack, but I don't know where else to change this... - if header[0] == 'scipy.base': - header = ('scipy', header[1]) + if header[0] == 'numpy.base': + header = ('numpy', header[1]) if os.path.splitext(header[1])[1] == '.inc': continue d = os.path.join(*([prefix]+header[0].split('.'))) |