diff options
| -rw-r--r-- | config.bat | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/config.bat b/config.bat index 4ce30874e8f..ba31161962e 100644 --- a/config.bat +++ b/config.bat | |||
| @@ -190,11 +190,11 @@ rem On my system dir.h gets in the way. It's a VMS file so who cares. | |||
| 190 | if exist dir.h ren dir.h vmsdir.h | 190 | if exist dir.h ren dir.h vmsdir.h |
| 191 | 191 | ||
| 192 | rem Create "makefile" from "makefile.in". | 192 | rem Create "makefile" from "makefile.in". |
| 193 | rm -f Makefile junk.c | 193 | rm -f Makefile junk.c junk2.c |
| 194 | sed -e "1,/== start of cpp stuff ==/s@^##*[ ].*$@@" <Makefile.in >junk.c | 194 | sed -e "1,/== start of cpp stuff ==/s@^##*[ ].*$@@" <Makefile.in >junk.c |
| 195 | gcc -E -traditional junk.c | sed -f ../msdos/sed1v2.inp >makefile.tmp | 195 | copy junk.c + deps.mk junk2.c |
| 196 | copy makefile.tmp + deps.mk Makefile | 196 | gcc -E -traditional junk2.c | sed -f ../msdos/sed1v2.inp >Makefile |
| 197 | rm -f junk.c makefile.tmp | 197 | rm -f junk.c junk2.c |
| 198 | 198 | ||
| 199 | if "%X11%" == "" goto src5 | 199 | if "%X11%" == "" goto src5 |
| 200 | mv Makefile makefile.tmp | 200 | mv Makefile makefile.tmp |