Use 'buildno1' instead of '@buildno' for temp file since DJGPP's bash
doesn't seem to grok @buildno.
diff --git a/Makefile.in b/Makefile.in
index 27d3c95..6a94388 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -152,8 +152,8 @@
 
 # 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