Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 86c052e

Browse files
committed
Use 'buildno1' instead of '@buildno' for temp file since DJGPP's bash
doesn't seem to grok @buildno.
1 parent 5aadaf5 commit 86c052e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,8 +152,8 @@ all: $(LIBRARY) python sharedmods
152152

153153
# Build the interpreter
154154
python: $(LIBRARY) buildno
155-
expr `cat buildno` + 1 >@buildno
156-
mv @buildno buildno
155+
expr `cat buildno` + 1 >buildno1
156+
mv -f buildno1 buildno
157157
$(CC) -c $(CFLAGS) -DBUILD=`cat buildno` \
158158
$(srcdir)/Modules/getbuildinfo.c
159159
$(AR) cr $(LIBRARY) getbuildinfo.o

0 commit comments

Comments
 (0)