Commit 59e6023b authored by PJ Eby's avatar PJ Eby

Remove debug print left in by mistake.

--HG--
branch : setuptools
extra : convert_revision : svn%3A6015fed2-1504-0410-9fe1-9d1591cc4771/sandbox/trunk/setuptools%4041928
parent bda5b372
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment