packaging cleanup: A few super I missed in 5ae03b1e147a

This commit is contained in:
Éric Araujo 2011-11-14 19:40:31 +01:00
parent 0efc419d4a
commit e749e21948
2 changed files with 10 additions and 11 deletions

View file

@ -233,12 +233,11 @@ class CygwinCCompiler(UnixCCompiler):
if not debug:
extra_preargs.append("-s")
UnixCCompiler.link(self, target_desc, objects, output_filename,
output_dir, libraries, library_dirs,
runtime_library_dirs,
None, # export_symbols, we do this in our def-file
debug, extra_preargs, extra_postargs, build_temp,
target_lang)
super(CygwinCCompiler, self).link(
target_desc, objects, output_filename, output_dir, libraries,
library_dirs, runtime_library_dirs,
None, # export_symbols, we do this in our def-file
debug, extra_preargs, extra_postargs, build_temp, target_lang)
# -- Miscellaneous methods -----------------------------------------