summaryrefslogtreecommitdiff
path: root/msdos/mainmake.v2
diff options
context:
space:
mode:
Diffstat (limited to 'msdos/mainmake.v2')
-rw-r--r--msdos/mainmake.v24
1 files changed, 2 insertions, 2 deletions
diff --git a/msdos/mainmake.v2 b/msdos/mainmake.v2
index e6c1567deab..c0686deeb89 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 autogen/README, i.e. we are building out of
+# A: Only if we find msdos/autogen/README, 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 autogen/README),)
+ifneq ($(wildcard msdos/autogen/README),)
ifeq ($(wildcard src/b-emacs.exe),)
boot := b-emacs.exe
endif