summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2007-12-31 19:16:56 (GMT)
committerChristian Heimes <christian@cheimes.de>2007-12-31 19:16:56 (GMT)
commit34ab3db8628a6ca7cd79eaaffd8a54c218f2e071 (patch)
tree1a0fba767703984ad7b8691089ec61622b1c9c94
parent82552229d2683f88c70f2dd0161c3e81f51fbdee (diff)
downloadcpython-34ab3db8628a6ca7cd79eaaffd8a54c218f2e071.zip
cpython-34ab3db8628a6ca7cd79eaaffd8a54c218f2e071.tar.gz
cpython-34ab3db8628a6ca7cd79eaaffd8a54c218f2e071.tar.bz2
Fixed path
-rw-r--r--PC/VS7.1/make_buildinfo.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/PC/VS7.1/make_buildinfo.c b/PC/VS7.1/make_buildinfo.c
index 4cebf45..779ddc2 100644
--- a/PC/VS7.1/make_buildinfo.c
+++ b/PC/VS7.1/make_buildinfo.c
@@ -5,9 +5,9 @@
/* This file creates the getbuildinfo.o object, by first
invoking subwcrev.exe (if found), and then invoking cl.exe.
- As a side effect, it might generate PCBuild\getbuildinfo2.c
+ As a side effect, it might generate PC\VS7.1\getbuildinfo2.c
also. If this isn't a subversion checkout, or subwcrev isn't
- found, it compiles ..\\Modules\\getbuildinfo.c instead.
+ found, it compiles ..\\..\\Modules\\getbuildinfo.c instead.
Currently, subwcrev.exe is found from the registry entries
of TortoiseSVN.
@@ -44,7 +44,7 @@ int make_buildinfo2()
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;
@@ -80,8 +80,8 @@ int main(int argc, char*argv[])
if ((do_unlink = make_buildinfo2()))
strcat(command, "getbuildinfo2.c -DSUBWCREV ");
else
- strcat(command, "..\\Modules\\getbuildinfo.c");
- strcat(command, " -Fogetbuildinfo.o -I..\\Include -I..\\PC");
+ strcat(command, "..\\..\\Modules\\getbuildinfo.c");
+ strcat(command, " -Fogetbuildinfo.o -I..\\..\\Include -I..\\..\\PC");
puts(command); fflush(stdout);
result = system(command);
if (do_unlink)
@@ -89,4 +89,4 @@ int main(int argc, char*argv[])
if (result < 0)
return EXIT_FAILURE;
return 0;
-} \ No newline at end of file
+}