* msdos/mainmake.v2: Add missing ChangeLog entry for previous, and fix

This commit is contained in:
Glenn Morris 2013-11-05 00:03:58 -08:00
parent 4dde498bce
commit 21c84598d9
2 changed files with 3 additions and 2 deletions

View file

@ -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 <monnier@iro.umontreal.ca>

View file

@ -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