From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Wolfgang Jenkner Newsgroups: gmane.emacs.devel Subject: Re: Trunk: Build error on FreeBSD Date: Sat, 22 Sep 2012 16:32:13 +0200 Message-ID: <85392a6sb4.fsf@iznogoud.viz> References: <86ipbfptdr.wl%hskuhra@eumx.net> <50544B5F.6060806@cs.ucla.edu> <85ehm3e9df.fsf@iznogoud.viz> <85vcfc94to.fsf@iznogoud.viz> <50579B90.5000808@cs.ucla.edu> <5057A62D.7030006@cs.ucla.edu> <85ehlzxuxm.fsf@iznogoud.viz> <505D6B6C.10006@cs.ucla.edu> <85r4pu73s6.fsf@iznogoud.viz> <505D9B4D.3050407@cs.ucla.edu> <85mx0i71ea.fsf@iznogoud.viz> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1348324421 28030 80.91.229.3 (22 Sep 2012 14:33:41 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sat, 22 Sep 2012 14:33:41 +0000 (UTC) Cc: "Herbert J. Skuhra" , Andreas Schwab , emacs-devel@gnu.org To: Paul Eggert Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sat Sep 22 16:33:41 2012 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TFQm5-0000KF-0y for ged-emacs-devel@m.gmane.org; Sat, 22 Sep 2012 16:33:41 +0200 Original-Received: from localhost ([::1]:53119 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TFQm0-0000iy-B5 for ged-emacs-devel@m.gmane.org; Sat, 22 Sep 2012 10:33:36 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:55960) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TFQlt-0000i2-Rw for emacs-devel@gnu.org; Sat, 22 Sep 2012 10:33:34 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TFQlp-0003Ed-9O for emacs-devel@gnu.org; Sat, 22 Sep 2012 10:33:29 -0400 Original-Received: from mx08.lb01.inode.at ([62.99.145.8]:43331 helo=mx.inode.at) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TFQlp-0003EX-2x for emacs-devel@gnu.org; Sat, 22 Sep 2012 10:33:25 -0400 Original-Received: from [91.119.101.188] (port=14589 helo=iznogoud.viz) by smartmx-08.inode.at with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.69) (envelope-from ) id 1TFQln-0002Tb-HW; Sat, 22 Sep 2012 16:33:23 +0200 Original-Received: from wolfgang by iznogoud.viz with local (Exim 4.80 (FreeBSD)) (envelope-from ) id 1TFQlj-000NFp-HJ; Sat, 22 Sep 2012 16:33:19 +0200 Mail-Followup-To: Paul Eggert , Andreas Schwab , "Herbert J. Skuhra" , emacs-devel@gnu.org User-Agent: Gnus/5.130006 (Ma Gnus v0.6) Emacs/24.2.50 (berkeley-unix) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-Received-From: 62.99.145.8 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:153463 Archived-At: On Sat, Sep 22 2012, Wolfgang Jenkner wrote: > On Sat, Sep 22 2012, Paul Eggert wrote: > >> If I understood him correctly, there should be no need to touch >> $(srcdir)/configure. If I'm wrong I hope somebody corrects me. > > Well, I have to touch configure, though I haven't investigated why. The > idea is that config.status being a prerequisite of Makefile, the latter > will be rebuilt if config.status is outdated with respect to configure. [137 ~/src/emacs-bzr]$ bzr branch trunk conftest && cd conftest && ./autogen.sh && ./configure MAKE=gmake && gmake bootstrap-clean && ./autogen.sh *** output flushed *** [138 ~/src/emacs-bzr/conftest]$ ls -l conf* -rw-r--r-- 1 wolfgang staff 12833 Sep 22 15:59 config.bat -rw-r--r-- 1 wolfgang staff 772677 Sep 22 16:01 config.log~ -rwxr-xr-x 1 wolfgang staff 66639 Sep 22 16:01 config.status* -rwxr-xr-x 1 wolfgang staff 690223 Sep 22 15:59 configure* -rw-r--r-- 1 wolfgang staff 157343 Sep 22 15:59 configure.ac The second invocation of autogen.sh is part of the make bootstrap, and I get the timestamps above. It seems that autoreconf hasn't seen a need to update configure, which ends up being older than config.status. The same thing happens with the native FreeBSD make here, by the way. Wolfgang