From: Paul Eggert Date: Wed, 2 Aug 2017 20:01:58 +0000 (-0700) Subject: Clarify when autogen.sh should run only autoconf X-Git-Tag: emacs-26.0.90~517^2~38 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5ed0bf1061cb0b2e70ee1d28f5f3586259ec0f3b;p=emacs.git Clarify when autogen.sh should run only autoconf * Makefile.in (configure, bootstrap): Run ‘./autogen.sh autoconf’, not plain ‘./autogen.sh’, to make it clear that only autoconf-related tools should be run here. --- diff --git a/Makefile.in b/Makefile.in index a31d416bd74..8a08465c4a9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -448,7 +448,7 @@ config.status: ${srcdir}/configure fi $(srcdir)/configure: $(srcdir)/configure.ac $(srcdir)/m4/*.m4 - cd $(srcdir) && ./autogen.sh + cd $(srcdir) && ./autogen.sh autoconf # ==================== Installation ==================== @@ -1094,7 +1094,7 @@ check-info: info # * Rebuild Makefile, to update the build procedure itself. # * Do the actual build. bootstrap: bootstrap-clean - cd $(srcdir) && ./autogen.sh + cd $(srcdir) && ./autogen.sh autoconf $(MAKE) MAKEFILE_NAME=force-Makefile force-Makefile $(MAKE) all