diff options
Diffstat (limited to 'numpy/distutils/npy_pkg_config.py')
-rw-r--r-- | numpy/distutils/npy_pkg_config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/distutils/npy_pkg_config.py b/numpy/distutils/npy_pkg_config.py index 346a4f981..2d380529f 100644 --- a/numpy/distutils/npy_pkg_config.py +++ b/numpy/distutils/npy_pkg_config.py @@ -277,9 +277,9 @@ if __name__ == '__main__': import os d = os.environ.get('NPY_PKG_CONFIG_PATH') if d: - info = read_info(pkg_name, ['numpy/core/lib/npy-pkg-config', '.', d]) + info = read_config(pkg_name, ['numpy/core/lib/npy-pkg-config', '.', d]) else: - info = read_info(pkg_name, ['numpy/core/lib/npy-pkg-config', '.']) + info = read_config(pkg_name, ['numpy/core/lib/npy-pkg-config', '.']) if options.section: section = options.section |