diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2002-08-04 06:17:08 (GMT) |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2002-08-04 06:17:08 (GMT) |
commit | 428a38c002d99fc224384f5901e7f64b75adcc16 (patch) | |
tree | dd0050fb8868b16227ebeb246930d574303f5a1e /Lib/distutils | |
parent | c61ec523ed67184709979a50c00a5677547a092b (diff) | |
download | cpython-428a38c002d99fc224384f5901e7f64b75adcc16.zip cpython-428a38c002d99fc224384f5901e7f64b75adcc16.tar.gz cpython-428a38c002d99fc224384f5901e7f64b75adcc16.tar.bz2 |
add parameter missing following Jeremy's compiler class refactoring
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/emxccompiler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/emxccompiler.py b/Lib/distutils/emxccompiler.py index 2dc4fbd..91920eb 100644 --- a/Lib/distutils/emxccompiler.py +++ b/Lib/distutils/emxccompiler.py @@ -76,7 +76,7 @@ class EMXCCompiler (UnixCCompiler): # __init__ () - def _compile(self, obj, src, ext, cc_args, extra_postargs): + def _compile(self, obj, src, ext, cc_args, extra_postargs, pp_opts): if ext == '.rc': # gcc requires '.rc' compiled to binary ('.res') files !!! try: |