diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2007-09-23 13:56:50 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2007-09-23 13:56:50 +0000 |
commit | 7afbac20de2dab458578b7575d10509664a7b237 (patch) | |
tree | 0b0305a18802060c00667336b4d6eaed740c0399 /numpy/distutils/command/build_ext.py | |
parent | aba52aeead780e3dfa8e83009a53c195ebd5b2f5 (diff) | |
download | numpy-7afbac20de2dab458578b7575d10509664a7b237.tar.gz |
fixing link error: fixed. Removing debug messages and added a warning message on the situation that triggered this issue: numpy.distutils must always be imported before distutils.
Diffstat (limited to 'numpy/distutils/command/build_ext.py')
-rw-r--r-- | numpy/distutils/command/build_ext.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/distutils/command/build_ext.py b/numpy/distutils/command/build_ext.py index 5825a94f3..9277f9393 100644 --- a/numpy/distutils/command/build_ext.py +++ b/numpy/distutils/command/build_ext.py @@ -390,8 +390,6 @@ class build_ext (old_build_ext): else: kws = {} - log.debug('DEBUG: linker=%s,library_dirs=%s,ext.runtime_library_dirs=%s' % (linker, library_dirs, ext.runtime_library_dirs)) - linker(objects, ext_filename, libraries=libraries, library_dirs=library_dirs, |