diff options
author | Guido van Rossum <guido@python.org> | 1997-08-20 22:13:15 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1997-08-20 22:13:15 (GMT) |
commit | 86c052e83afc980d105186d53473210bb425e2ae (patch) | |
tree | 7d2c6c58cdb4221f9e2bc0208fb175b4036ce5ae /Makefile.in | |
parent | 5aadaf5a8e4b7ee84ab8ba1293f60e5de51892b1 (diff) | |
download | cpython-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.in | 4 |
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 |