diff options
author | Travis Oliphant <oliphant@enthought.com> | 2007-11-08 21:57:44 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2007-11-08 21:57:44 +0000 |
commit | 529384d3ce1d5f769304f88766054374a24eabdf (patch) | |
tree | 22638e5964e628b29fd27ca015a76be93f410938 /numpy/distutils/command/build_ext.py | |
parent | 064d8fecb1494004d81230b681dce8f7e208cf6f (diff) | |
download | numpy-529384d3ce1d5f769304f88766054374a24eabdf.tar.gz |
Back out change made in r4380 which causes scipy.fftpack not to build correctly.
Diffstat (limited to 'numpy/distutils/command/build_ext.py')
-rw-r--r-- | numpy/distutils/command/build_ext.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/numpy/distutils/command/build_ext.py b/numpy/distutils/command/build_ext.py index 4f5819175..702b4ae86 100644 --- a/numpy/distutils/command/build_ext.py +++ b/numpy/distutils/command/build_ext.py @@ -89,7 +89,6 @@ class build_ext (old_build_ext): ' overwriting build_info\n%s... \nwith\n%s...' \ % (libname, `clibs[libname]`[:300], `build_info`[:300])) clibs[libname] = build_info - local_clibs = clibs.copy() # .. and distribution libraries: for libname,build_info in self.distribution.libraries or []: if clibs.has_key(libname): @@ -113,11 +112,7 @@ class build_ext (old_build_ext): for m in binfo.get('macros',[]): if m not in macros: macros.append(m) - if libname in local_clibs: - c = self.compiler - outname = c.library_filename(libname, - output_dir=self.build_temp) - ext.depends.append(outname) + for l in clibs.get(libname,{}).get('source_languages',[]): ext_languages.add(l) if c_libs: |