diff options
author | Éric Araujo <merwok@netwok.org> | 2011-11-14 18:40:31 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2011-11-14 18:40:31 (GMT) |
commit | e749e21948ceef9ceef755d9b3d1c25c688fdc59 (patch) | |
tree | 1d170494179d3d0d60f2898aacb9d063e10d3132 /Lib/packaging/compiler | |
parent | 0efc419d4a82f6cb748baf59d1debcd1f933aaa7 (diff) | |
download | cpython-e749e21948ceef9ceef755d9b3d1c25c688fdc59.zip cpython-e749e21948ceef9ceef755d9b3d1c25c688fdc59.tar.gz cpython-e749e21948ceef9ceef755d9b3d1c25c688fdc59.tar.bz2 |
packaging cleanup: A few super I missed in 5ae03b1e147a
Diffstat (limited to 'Lib/packaging/compiler')
-rw-r--r-- | Lib/packaging/compiler/cygwinccompiler.py | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/Lib/packaging/compiler/cygwinccompiler.py b/Lib/packaging/compiler/cygwinccompiler.py index 916a1cc..d793abd 100644 --- a/Lib/packaging/compiler/cygwinccompiler.py +++ b/Lib/packaging/compiler/cygwinccompiler.py @@ -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 ----------------------------------------- |