From: Guido van Rossum Date: Wed, 20 Aug 1997 22:13:15 +0000 (+0000) Subject: Use 'buildno1' instead of '@buildno' for temp file since DJGPP's bash X-Git-Tag: v1.5a4~357 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=86c052e83afc980d105186d53473210bb425e2ae;p=thirdparty%2FPython%2Fcpython.git Use 'buildno1' instead of '@buildno' for temp file since DJGPP's bash doesn't seem to grok @buildno. --- diff --git a/Makefile.in b/Makefile.in index 27d3c952044b..6a9438801d0d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -152,8 +152,8 @@ all: $(LIBRARY) python sharedmods # Build the interpreter python: $(LIBRARY) buildno - expr `cat buildno` + 1 >@buildno - mv @buildno buildno + expr `cat buildno` + 1 >buildno1 + mv -f buildno1 buildno $(CC) -c $(CFLAGS) -DBUILD=`cat buildno` \ $(srcdir)/Modules/getbuildinfo.c $(AR) cr $(LIBRARY) getbuildinfo.o