From 86c052e83afc980d105186d53473210bb425e2ae Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 20 Aug 1997 22:13:15 +0000 Subject: Use 'buildno1' instead of '@buildno' for temp file since DJGPP's bash doesn't seem to grok @buildno. --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index 27d3c95..6a94388 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 -- cgit v0.12