diff options
author | Eli Zaretskii <eliz@gnu.org> | 2010-05-07 14:21:29 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2010-05-07 14:21:29 +0300 |
commit | f724825e893b6649cb8ade08101205fe0faa363a (patch) | |
tree | 50c5dc059b7275863cfe1dbcfc658d655be715fc /config.bat | |
parent | 5f43e51c03f72ce8be50c475b5e0fc3cd6f94a83 (diff) | |
download | emacs-f724825e893b6649cb8ade08101205fe0faa363a.tar.gz |
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.bat | 2 |
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 rem Create "makefile" from "makefile.in".
rm -f Makefile junk.c
-sed -e "1,/== start of cpp stuff ==/s@^# .*$@@" <Makefile.in >junk.c
+sed -e "1,/== start of cpp stuff ==/s@^##*[ ].*$@@" <Makefile.in >junk.c
If "%DJGPP_VER%" == "1" Goto mfV1
gcc -E -traditional junk.c | sed -f ../msdos/sed1v2.inp >Makefile
goto mfDone
|