summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-09-17 15:35:28 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2012-09-17 15:35:28 -0700
commitdee26dfa11ac3936c84f42b83a0e1ec7ae2b15f9 (patch)
tree3422e706b3df5a1d1590ec125a57377bf72035d1 /Makefile.in
parent50bfc8243c7385f7e795bca26b539f57c167170c (diff)
downloademacs-dee26dfa11ac3936c84f42b83a0e1ec7ae2b15f9.tar.gz
* Makefile.in: Run autogen/copy_autogen if autogen.sh fails,
to create 'configure'; problem reported by Andreas Schwab in <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00438.html>. * autogen.sh: Exit with status 1 when failing due to missing tools, reverting the 2012-09-10 change to this file. * autogen/copy_autogen: Fail if one of the subsidiary actions fail. Use 'cp -f' for the build-aux files, since the destinations are typically read-only.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 386c4c135be..56a54403ef3 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -890,11 +890,11 @@ dvi:
# Bootstrapping does the following:
# * Remove files to start from a clean slate.
-# * Run autogen.sh, but don't worry about exit status 101 (missing tools).
+# * Run autogen.sh, falling back on copy_autogen if autogen.sh fails.
# * Build Makefile, to build the build procedure itself.
# * Do the actual build.
bootstrap: bootstrap-clean FRC
- cd $(srcdir) && { ./autogen.sh || test $$? -eq 101; }
+ cd $(srcdir) && { ./autogen.sh || autogen/copy_autogen; }
./configure $(CONFIGURE_FLAGS)
$(MAKE) $(MFLAGS) info all