diff options
| author | Travis Oliphant <oliphant@enthought.com> | 2006-06-20 08:55:58 +0000 |
|---|---|---|
| committer | Travis Oliphant <oliphant@enthought.com> | 2006-06-20 08:55:58 +0000 |
| commit | f17405eed765ef1aacabe7dbc05619b329a78ab1 (patch) | |
| tree | 604eff61d0a179a3caa5749d368e4b1447e2e6f3 /numpy/numarray | |
| parent | 669c8238d35fc7d60eba62f7499f9f624db908a6 (diff) | |
| download | numpy-f17405eed765ef1aacabe7dbc05619b329a78ab1.tar.gz | |
More fixes to C-API for numarray
Diffstat (limited to 'numpy/numarray')
| -rw-r--r-- | numpy/numarray/setup.py | 2 | ||||
| -rw-r--r-- | numpy/numarray/util.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/numpy/numarray/setup.py b/numpy/numarray/setup.py index f0d913855..f24e61a7c 100644 --- a/numpy/numarray/setup.py +++ b/numpy/numarray/setup.py @@ -5,7 +5,7 @@ def configuration(parent_package='',top_path=None): from numpy.distutils.misc_util import Configuration config = Configuration('numarray',parent_package,top_path) - config.add_data_files('numpy_numarray') + config.add_data_files('numpy_numarray/') # Configure fftpack_lite config.add_extension('_capi', diff --git a/numpy/numarray/util.py b/numpy/numarray/util.py index 74b6e178b..1120a4005 100644 --- a/numpy/numarray/util.py +++ b/numpy/numarray/util.py @@ -32,7 +32,7 @@ def handleError(errorStatus, sourcemsg): import os import numpy -def get_numarray_headers(): +def get_numarray_include_dirs(): base = os.path.dirname(numpy.__file__) newdirs = [os.path.join(base, 'numarray')] return newdirs |
