diff options
author | David Cournapeau <cournape@gmail.com> | 2009-10-27 09:43:40 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-10-27 09:43:40 +0000 |
commit | 5dc5c73739995adfa7b38fc1abbf8241874a6145 (patch) | |
tree | a8e50dae3900dcb4bdbca03a614731af795c0cbc /numpy/distutils/command | |
parent | 05324d0e986a1012a342e2650b3883e13a285029 (diff) | |
download | numpy-5dc5c73739995adfa7b38fc1abbf8241874a6145.tar.gz |
BUG: pkg_paths was wrongly set when using --package-list for numscons build.
Diffstat (limited to 'numpy/distutils/command')
-rw-r--r-- | numpy/distutils/command/scons.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/command/scons.py b/numpy/distutils/command/scons.py index 07039b02a..8fc46df96 100644 --- a/numpy/distutils/command/scons.py +++ b/numpy/distutils/command/scons.py @@ -556,7 +556,7 @@ the output it.""" pre_hooks = [self.pre_hooks[i] for i in id] post_hooks = [self.post_hooks[i] for i in id] pkg_names = [self.pkg_names[i] for i in id] - pkg_paths = [self.pkg_names[i] for i in id] + pkg_paths = [self.pkg_paths[i] for i in id] else: sconscripts = self.sconscripts pre_hooks = self.pre_hooks |