emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Trunk: Build error on FreeBSD


From: Wolfgang Jenkner
Subject: Re: Trunk: Build error on FreeBSD
Date: Tue, 18 Sep 2012 16:04:08 +0200
User-agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.2.50 (berkeley-unix)

On Tue, Sep 18 2012, Andreas Schwab wrote:

> It still does not exist.

Rev. 110082 reintroduces the original bug, which was at the beginning of
this story, viz.

$ ./autogen.sh && ./configure MAKE=gmake && gmake bootstrap

runs this line in config.status

${MAKE-make} MAKEFILE_NAME=do-not-make-Makefile epaths-force

with make instead of gmake.  This prevented src/epaths.h from being
generated because gmake was passing down indigestible MAKEFLAGS to an
unsuspecting make.

This time, this doesn't happen (with the default settings), but I'd like
to propose the following patch anyway.

Wolfgang

2012-09-18  Wolfgang Jenkner  <address@hidden>

        * Makefile.in (bootstrap): Simplify last change.

=== modified file 'Makefile.in'
--- Makefile.in 2012-09-17 22:43:12 +0000
+++ Makefile.in 2012-09-18 12:57:30 +0000
@@ -894,13 +894,8 @@
 #  * Build Makefile, to build 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
+       cd $(srcdir) && { ./autogen.sh || autogen/copy_autogen; } && touch 
configure
+       $(MAKE) $(MFLAGS) Makefile
        $(MAKE) $(MFLAGS) info all
 
 .PHONY: check-declare




reply via email to

[Prev in Thread] Current Thread [Next in Thread]