diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2006-04-19 16:50:17 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2006-04-19 16:50:17 +0000 |
commit | 51a6c983cedeceee316a5d7b2e99f6ebca65b518 (patch) | |
tree | cf7bf20d0736f3d3fbffee2b4d79f814d8baf4a3 /numpy/distutils/command/build_src.py | |
parent | 847c32da33086fd525e230d0af6a8513593cee25 (diff) | |
download | numpy-51a6c983cedeceee316a5d7b2e99f6ebca65b518.tar.gz |
Fix build_src inplace build for library sources.
Diffstat (limited to 'numpy/distutils/command/build_src.py')
-rw-r--r-- | numpy/distutils/command/build_src.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/command/build_src.py b/numpy/distutils/command/build_src.py index 5b6cf5d85..08aac6aad 100644 --- a/numpy/distutils/command/build_src.py +++ b/numpy/distutils/command/build_src.py @@ -247,7 +247,7 @@ class build_src(build_ext.build_ext): func_sources.append(source) if not func_sources: return new_sources - if self.inplace: + if self.inplace and not is_sequence(extension): build_dir = self.ext_target_dir else: if is_sequence(extension): |