aboutsummaryrefslogtreecommitdiffstats
path: root/msdos
diff options
context:
space:
mode:
authorGlenn Morris <[email protected]>2013-11-05 00:03:58 -0800
committerGlenn Morris <[email protected]>2013-11-05 00:03:58 -0800
commit21c84598d942acaf99fee5985dd3d4b771322e7b (patch)
tree2e6a1673f4ce3c647503e6c25fb5bd40c374f4bf /msdos
parent4dde498bceb259c0ce670a846224da39a118459b (diff)
* msdos/mainmake.v2: Add missing ChangeLog entry for previous, and fix
Diffstat (limited to 'msdos')
-rw-r--r--msdos/ChangeLog1
-rw-r--r--msdos/mainmake.v24
2 files changed, 3 insertions, 2 deletions
diff --git a/msdos/ChangeLog b/msdos/ChangeLog
index 77aa53ec27..96a5e79b13 100644
--- a/msdos/ChangeLog
+++ b/msdos/ChangeLog
@@ -2,6 +2,7 @@
* autogen/config.in:
* autogen/Makefile.in: Move here from ../autogen.
+ * mainmake.v2: Use msdos/autogen rather than autogen.
2013-05-15 Stefan Monnier <[email protected]>
diff --git a/msdos/mainmake.v2 b/msdos/mainmake.v2
index c0686deeb8..81e85a0716 100644
--- a/msdos/mainmake.v2
+++ b/msdos/mainmake.v2
@@ -64,13 +64,13 @@ MAKESHELL=/xyzzy/command
top_srcdir := $(subst \,/,$(shell cd))
# Q: Do we need to bootstrap?
-# A: Only if we find msdos/autogen/README, i.e. we are building out of
+# A: Only if we find msdos/autogen/Makefile.in, i.e. we are building out of
# a VCS-checkout (not a release), and src/b-emacs.exe does not exist.
# This avoids building a bootstrap-emacs and recompiling Lisp files
# when building a pretest/release tarball. Recompiling Lisp files
# is BAD because lisp/Makefile.in requires a Unixy shell.
boot :=
-ifneq ($(wildcard msdos/autogen/README),)
+ifneq ($(wildcard msdos/autogen/Makefile.in),)
ifeq ($(wildcard src/b-emacs.exe),)
boot := b-emacs.exe
endif