Use 'buildno1' instead of '@buildno' for temp file since DJGPP's bash

doesn't seem to grok @buildno.
This commit is contained in:
Guido van Rossum 1997-08-20 22:13:15 +00:00
parent 5aadaf5a8e
commit 86c052e83a

View file

@ -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