aboutsummaryrefslogtreecommitdiffstats
path: root/config.bat
diff options
context:
space:
mode:
authorEli Zaretskii2010-05-07 14:21:29 +0300
committerEli Zaretskii2010-05-07 14:21:29 +0300
commitf724825e893b6649cb8ade08101205fe0faa363a (patch)
tree50c5dc059b7275863cfe1dbcfc658d655be715fc /config.bat
parent5f43e51c03f72ce8be50c475b5e0fc3cd6f94a83 (diff)
downloademacs-f724825e893b6649cb8ade08101205fe0faa363a.tar.gz
emacs-f724825e893b6649cb8ade08101205fe0faa363a.zip
Fix the "config msdos" step of MS-DOS build (due to removal of some cpp stuff from configury).
config.bat: Allow for 2 leading `#'s in comments in src/Makefile.in. src/Makefile.in: Don't use Make-style comments past the "start of cpp stuff" line.
Diffstat (limited to 'config.bat')
-rw-r--r--config.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.bat b/config.bat
index 5a0e9168fa3..271673bc302 100644
--- a/config.bat
+++ b/config.bat
@@ -197,7 +197,7 @@ if exist dir.h ren dir.h vmsdir.h
197 197
198rem Create "makefile" from "makefile.in". 198rem Create "makefile" from "makefile.in".
199rm -f Makefile junk.c 199rm -f Makefile junk.c
200sed -e "1,/== start of cpp stuff ==/s@^# .*$@@" <Makefile.in >junk.c 200sed -e "1,/== start of cpp stuff ==/s@^##*[ ].*$@@" <Makefile.in >junk.c
201If "%DJGPP_VER%" == "1" Goto mfV1 201If "%DJGPP_VER%" == "1" Goto mfV1
202gcc -E -traditional junk.c | sed -f ../msdos/sed1v2.inp >Makefile 202gcc -E -traditional junk.c | sed -f ../msdos/sed1v2.inp >Makefile
203goto mfDone 203goto mfDone