[Numpy-svn] r4423 - tags/1.0.4/numpy/distutils/command

numpy-svn at scipy.org numpy-svn at scipy.org
Thu Nov 8 17:06:20 EST 2007


Author: oliphant
Date: 2007-11-08 16:06:18 -0600 (Thu, 08 Nov 2007)
New Revision: 4423

Modified:
   tags/1.0.4/numpy/distutils/command/build_ext.py
Log:
Travis O is doing a bad thing by modifying this tagged release.  However, it is worse to have a release that causes SciPy to fail on build.  Hopefully, not too many people have now invalidated releases.

Modified: tags/1.0.4/numpy/distutils/command/build_ext.py
===================================================================
--- tags/1.0.4/numpy/distutils/command/build_ext.py	2007-11-08 21:57:44 UTC (rev 4422)
+++ tags/1.0.4/numpy/distutils/command/build_ext.py	2007-11-08 22:06:18 UTC (rev 4423)
@@ -89,7 +89,6 @@
                              ' 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,6 @@
                     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:




More information about the Numpy-svn mailing list