aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorPaul Eggert <[email protected]>2012-09-22 03:59:13 -0700
committerPaul Eggert <[email protected]>2012-09-22 03:59:13 -0700
commitbbe099e709d5c89eb638e190cc96dfb8bea5e887 (patch)
tree1aab45f5c1c39fa580b72d36382c2f205c682938 /Makefile.in
parent54afd49976bbacd83516e5fc0cd22a2d17936419 (diff)
* Makefile.in (bootstrap): Simplify build procedure.
Suggested by Wolfgang Jenker in <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00456.html>.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in11
1 files changed, 3 insertions, 8 deletions
diff --git a/Makefile.in b/Makefile.in
index 7a38abeca1..542c30bbab 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -889,18 +889,13 @@ dvi:
.PHONY: bootstrap
# Bootstrapping does the following:
-# * Remove files to start from a clean slate.
+# * Remove files to start from a bootstrap-clean slate.
# * Run autogen.sh, falling back on copy_autogen if autogen.sh fails.
-# * Build Makefile, to build the build procedure itself.
+# * Rebuild Makefile, to update the build procedure itself.
# * Do the actual build.
bootstrap: bootstrap-clean FRC
cd $(srcdir) && { ./autogen.sh || autogen/copy_autogen; }
- if [ -x config.status ]; then \
- ./config.status --recheck && \
- ./config.status; \
- else \
- $(srcdir)/configure $(CONFIGURE_FLAGS); \
- fi
+ $(MAKE) $(MFLAGS) Makefile
$(MAKE) $(MFLAGS) info all
.PHONY: check-declare