[pywin32-checkins] pywin32 setup_win32all_core.py,1.4,1.5
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <th...@us...> - 2003-08-22 19:58:31
|
Update of /cvsroot/pywin32/pywin32 In directory sc8-pr-cvs1:/tmp/cvs-serv2340 Modified Files: setup_win32all_core.py Log Message: Copying the .lib files for pywintypes and pythoncom did not work. Hopefully it works with mingw32 any longer (but I have no time to check). Index: setup_win32all_core.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup_win32all_core.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** setup_win32all_core.py 18 Jul 2003 08:36:13 -0000 1.4 --- setup_win32all_core.py 22 Aug 2003 19:58:27 -0000 1.5 *************** *** 141,145 **** prefix = '' extra = extra + '.lib' ! src = os.path.join(self.build_temp, prefix + name + extra) dst = os.path.join(self.build_temp, "..", prefix + ext.name + extra) self.copy_file(src, dst)#, update=1) --- 141,151 ---- prefix = '' extra = extra + '.lib' ! ! # MSVCCompiler constructs the .lib file in the same directory ! # as the first source file's object file: ! # os.path.dirname(objects[0]) ! src = os.path.join(self.build_temp, ! os.path.dirname(ext.sources[0]), ! prefix + name + extra) dst = os.path.join(self.build_temp, "..", prefix + ext.name + extra) self.copy_file(src, dst)#, update=1) |