summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-08-20 22:13:15 (GMT)
committerGuido van Rossum <guido@python.org>1997-08-20 22:13:15 (GMT)
commit86c052e83afc980d105186d53473210bb425e2ae (patch)
tree7d2c6c58cdb4221f9e2bc0208fb175b4036ce5ae /Makefile.in
parent5aadaf5a8e4b7ee84ab8ba1293f60e5de51892b1 (diff)
downloadcpython-86c052e83afc980d105186d53473210bb425e2ae.zip
cpython-86c052e83afc980d105186d53473210bb425e2ae.tar.gz
cpython-86c052e83afc980d105186d53473210bb425e2ae.tar.bz2
Use 'buildno1' instead of '@buildno' for temp file since DJGPP's bash
doesn't seem to grok @buildno.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files 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