diff options
author | PJ Eby <distutils-sig@python.org> | 2006-01-05 23:30:42 +0000 |
---|---|---|
committer | PJ Eby <distutils-sig@python.org> | 2006-01-05 23:30:42 +0000 |
commit | 59e6023baf87bd578ca73bd534d35917592f3a76 (patch) | |
tree | 432cc8529a577ef3762d2db795a9965f1ae51784 /setuptools/command/build_ext.py | |
parent | bda5b372b2b631048897ec5ecee6eee98b3b06a9 (diff) | |
download | external_python_setuptools-59e6023baf87bd578ca73bd534d35917592f3a76.tar.gz external_python_setuptools-59e6023baf87bd578ca73bd534d35917592f3a76.tar.bz2 external_python_setuptools-59e6023baf87bd578ca73bd534d35917592f3a76.zip |
Remove debug print left in by mistake.
--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041928
Diffstat (limited to 'setuptools/command/build_ext.py')
-rw-r--r-- | setuptools/command/build_ext.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/setuptools/command/build_ext.py b/setuptools/command/build_ext.py index b2095796..ec8a8038 100644 --- a/setuptools/command/build_ext.py +++ b/setuptools/command/build_ext.py @@ -52,9 +52,7 @@ class build_ext(_build_ext): for ext in self.shlibs: if self.get_ext_fullname(ext.name)==fullname: fn, ext = os.path.splitext(filename) - fn = self.shlib_compiler.library_filename(fn,'shared') - print "shlib",fn - return fn + return self.shlib_compiler.library_filename(fn,'shared') return filename def initialize_options(self): @@ -80,6 +78,8 @@ class build_ext(_build_ext): self.compiler = _compiler + + def setup_shlib_compiler(self): compiler = self.shlib_compiler = new_compiler( compiler=self.compiler, dry_run=self.dry_run, force=self.force |