[pywin32-checkins] pywin32 setup.py,1.110,1.111
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2010-08-27 06:53:52
|
Update of /cvsroot/pywin32/pywin32 In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv25640 Modified Files: setup.py Log Message: support setup.py --prefix=... Index: setup.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/setup.py,v retrieving revision 1.110 retrieving revision 1.111 diff -C2 -d -r1.110 -r1.111 *** setup.py 14 May 2010 22:31:15 -0000 1.110 --- setup.py 27 Aug 2010 06:53:44 -0000 1.111 *************** *** 1284,1288 **** # We must run the script we just installed into Scripts, as it # may have had 2to3 run over it. ! filename = os.path.join(sys.prefix, "Scripts", "pywin32_postinstall.py") if not os.path.isfile(filename): raise RuntimeError("Can't find '%s'" % (filename,)) --- 1284,1288 ---- # We must run the script we just installed into Scripts, as it # may have had 2to3 run over it. ! filename = os.path.join(self.prefix, "Scripts", "pywin32_postinstall.py") if not os.path.isfile(filename): raise RuntimeError("Can't find '%s'" % (filename,)) |