summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-07-26 11:22:05 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-07-26 11:22:05 +0000
commita71977d8e6a2e7f543a131dbebd557471fce64c5 (patch)
treeaf023bb4db445bc96f05fb68e518a722bb30653d
parent9abcc033f3831b040db65bb842e5bae90e60314d (diff)
downloadnumpy-a71977d8e6a2e7f543a131dbebd557471fce64c5.tar.gz
Fix npy_pkg_config script.
-rw-r--r--numpy/distutils/npy_pkg_config.py4
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