[pywin32-checkins] pywin32 setup.py,1.70,1.71
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-05-19 13:49:20
|
Update of /cvsroot/pywin32/pywin32 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16041 Modified Files: setup.py Log Message: Only attempt to 'fixup' the sdk dirs if we found an SDK! Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.70 retrieving revision 1.71 diff -C2 -d -r1.70 -r1.71 *** setup.py 11 Apr 2008 00:32:08 -0000 1.70 --- setup.py 19 May 2008 13:49:13 -0000 1.71 *************** *** 728,732 **** self.compiler.initialize() ! self._fixup_sdk_dirs() # Here we hack a "pywin32" directory (one of 'win32', 'win32com', --- 728,733 ---- self.compiler.initialize() ! if sdk_dir: ! self._fixup_sdk_dirs() # Here we hack a "pywin32" directory (one of 'win32', 'win32com', |