[Python-checkins] r59640 - in python/trunk: PC/VS7.1/make_buildinfo.c Tools/msi/msi.py

christian.heimes python-checkins at python.org
Tue Jan 1 14:58:17 CET 2008


Author: christian.heimes
Date: Tue Jan  1 14:58:16 2008
New Revision: 59640

Modified:
   python/trunk/PC/VS7.1/make_buildinfo.c
   python/trunk/Tools/msi/msi.py
Log:
The root of the project is two levels up from PC/VS7.1

Modified: python/trunk/PC/VS7.1/make_buildinfo.c
==============================================================================
--- python/trunk/PC/VS7.1/make_buildinfo.c	(original)
+++ python/trunk/PC/VS7.1/make_buildinfo.c	Tue Jan  1 14:58:16 2008
@@ -44,7 +44,7 @@
 	if (_stat(command+1, &st) < 0)
 		/* subwcrev.exe not part of the release */
 		return 0;
-	strcat(command, "\" .. ..\\..\\Modules\\getbuildinfo.c getbuildinfo2.c");
+	strcat(command, "\" ..\\.. ..\\..\\Modules\\getbuildinfo.c getbuildinfo2.c");
 	puts(command); fflush(stdout);
 	if (system(command) < 0)
 		return 0;

Modified: python/trunk/Tools/msi/msi.py
==============================================================================
--- python/trunk/Tools/msi/msi.py	(original)
+++ python/trunk/Tools/msi/msi.py	Tue Jan  1 14:58:16 2008
@@ -1011,7 +1011,7 @@
     default_feature.set_current()
     lib = PyDirectory(db, cab, root, srcdir + "/" + PCBUILD, "DLLs", "DLLS|DLLs")
     lib.add_file("py.ico", src=srcdir+"/PC/py.ico")
-    lib.add_file("pyc.ico", src=srcdir"/PC/pyc.ico")
+    lib.add_file("pyc.ico", src=srcdir+"/PC/pyc.ico")
     dlls = []
     tclfiles = []
     for f in extensions:


More information about the Python-checkins mailing list