aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2010-05-07 14:21:29 +0300
committerEli Zaretskii2010-05-07 14:21:29 +0300
commitf724825e893b6649cb8ade08101205fe0faa363a (patch)
tree50c5dc059b7275863cfe1dbcfc658d655be715fc
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.
-rw-r--r--ChangeLog5
-rw-r--r--config.bat2
-rw-r--r--src/ChangeLog5
-rw-r--r--src/Makefile.in4
4 files changed, 13 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 06a8ad610b6..ffabf7204c2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12010-05-07 Eli Zaretskii <eliz@gnu.org>
2
3 * config.bat: Allow for 2 leading `#'s in comments in
4 src/Makefile.in.
5
12010-05-07 Glenn Morris <rgm@gnu.org> 62010-05-07 Glenn Morris <rgm@gnu.org>
2 7
3 * configure.in (LD_SWITCH_SYSTEM): Set with configure, not cpp. 8 * configure.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
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
diff --git a/src/ChangeLog b/src/ChangeLog
index 04d9d6b8266..b6847aa164e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12010-05-07 Eli Zaretskii <eliz@gnu.org>
2
3 * Makefile.in (PRE_ALLOC_OBJ): Don't use Make-style comments past
4 the "start of cpp stuff" line.
5
12010-05-07 Glenn Morris <rgm@gnu.org> 62010-05-07 Glenn Morris <rgm@gnu.org>
2 7
3 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp. 8 * Makefile.in (LD_SWITCH_SYSTEM): Set with configure, not cpp.
diff --git a/src/Makefile.in b/src/Makefile.in
index 5ea321df78c..f6fcff659a6 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -397,9 +397,9 @@ rallocobj = ralloc.o
397vmlimitobj = vm-limit.o 397vmlimitobj = vm-limit.o
398#endif /* !SYSTEM_MALLOC */ 398#endif /* !SYSTEM_MALLOC */
399 399
400## Empty on Cygwin, lastfile.o elsewhere. 400/* Empty on Cygwin, lastfile.o elsewhere. */
401PRE_ALLOC_OBJ=@PRE_ALLOC_OBJ@ 401PRE_ALLOC_OBJ=@PRE_ALLOC_OBJ@
402## lastfile.o vm-limit.o on Cygwin, $vmlimitobj elsewhere. 402/* lastfile.o vm-limit.o on Cygwin, $vmlimitobj elsewhere. */
403POST_ALLOC_OBJ=@POST_ALLOC_OBJ@ 403POST_ALLOC_OBJ=@POST_ALLOC_OBJ@
404 404
405/* List of object files that make-docfile should not be told about. */ 405/* List of object files that make-docfile should not be told about. */