You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by va...@apache.org on 2010/03/24 17:35:02 UTC

svn commit: r927115 - /lucene/pylucene/trunk/jcc/helpers/mingw32.py

Author: vajda
Date: Wed Mar 24 16:35:02 2010
New Revision: 927115

URL: http://svn.apache.org/viewvc?rev=927115&view=rev
Log:
oops, left one orig_ in

Modified:
    lucene/pylucene/trunk/jcc/helpers/mingw32.py

Modified: lucene/pylucene/trunk/jcc/helpers/mingw32.py
URL: http://svn.apache.org/viewvc/lucene/pylucene/trunk/jcc/helpers/mingw32.py?rev=927115&r1=927114&r2=927115&view=diff
==============================================================================
--- lucene/pylucene/trunk/jcc/helpers/mingw32.py (original)
+++ lucene/pylucene/trunk/jcc/helpers/mingw32.py Wed Mar 24 16:35:02 2010
@@ -16,14 +16,14 @@ class JCCMinGW32CCompiler(Mingw32CCompil
         if dll_extension.lower() == ".dll":
             extra_preargs.extend(["-Wl,--out-implib,%s" %(os.path.join(os.path.dirname(dll_name), "jcc", "jcc.lib"))])
 
-        orig_Mingw32CCompiler.link(self, target_desc=target_desc,
-                                   objects=objects,
-                                   output_filename=output_filename, 
-                                   output_dir=output_dir, libraries=libraries,
-                                   library_dirs=library_dirs,
-                                   runtime_library_dirs=runtime_library_dirs,
-                                   export_symbols=export_symbols, debug=debug,
-                                   extra_preargs=extra_preargs,
-                                   extra_postargs=extra_postargs, 
-                                   build_temp=build_temp,
-                                   target_lang=target_lang)
+        Mingw32CCompiler.link(self, target_desc=target_desc,
+                              objects=objects,
+                              output_filename=output_filename, 
+                              output_dir=output_dir, libraries=libraries,
+                              library_dirs=library_dirs,
+                              runtime_library_dirs=runtime_library_dirs,
+                              export_symbols=export_symbols, debug=debug,
+                              extra_preargs=extra_preargs,
+                              extra_postargs=extra_postargs, 
+                              build_temp=build_temp,
+                              target_lang=target_lang)