From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 11413 invoked by alias); 23 Mar 2015 20:29:03 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 11395 invoked by uid 89); 23 Mar 2015 20:29:02 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=2.8 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,KAM_FROM_URIBL_PCCC,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=no version=3.3.2 X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail-oi0-f52.google.com Received: from mail-oi0-f52.google.com (HELO mail-oi0-f52.google.com) (209.85.218.52) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 23 Mar 2015 20:29:02 +0000 Received: by oifl3 with SMTP id l3so120936463oif.0; Mon, 23 Mar 2015 13:29:00 -0700 (PDT) MIME-Version: 1.0 X-Received: by 10.182.186.100 with SMTP id fj4mr809241obc.12.1427142540039; Mon, 23 Mar 2015 13:29:00 -0700 (PDT) Received: by 10.76.134.102 with HTTP; Mon, 23 Mar 2015 13:28:59 -0700 (PDT) In-Reply-To: References: <20150311094134.GE9455@vapier> <1426310999-13103-1-git-send-email-vapier@gentoo.org> <20150319120631.GB4884@adacore.com> <20150319230427.GI4128@vapier> <20150321195953.GA24181@vapier> <20150323124600.GC5438@adacore.com> Date: Mon, 23 Mar 2015 20:29:00 -0000 Message-ID: Subject: Re: [PATCH] update automake version to 1.11.6 From: "H.J. Lu" To: Cary Coutant Cc: Joel Brobecker , gdb-patches , Binutils , Doug Evans Content-Type: text/plain; charset=UTF-8 X-IsSubscribed: yes X-SW-Source: 2015-03/txt/msg00753.txt.bz2 On Mon, Mar 23, 2015 at 1:21 PM, Cary Coutant wrote: >> I personally do verify the changes in the configure files, >> for instance, and ask myself whether each hunk I see makes sense >> to me or not. Seeing unrelated changes because others used a different >> version makes that process a little harder (and, most of the time, >> I'll just start over, and push a patch that first regenerates the >> file). > > I have two machines, both with automake-1.11.1 configured and built > from the same source, but the two generate ever-so-slightly different > gold/Makefile.in: > > --- a/gold/Makefile.in > +++ b/gold/Makefile.in > @@ -70,8 +70,8 @@ subdir = . > DIST_COMMON = NEWS README ChangeLog $(srcdir)/Makefile.in \ > $(srcdir)/Makefile.am $(top_srcdir)/configure \ > $(am__configure_deps) $(srcdir)/config.in \ > - $(srcdir)/../mkinstalldirs $(top_srcdir)/po/Make-in ffsll.c \ > - ftruncate.c pread.c mremap.c yyscript.h yyscript.c \ > + $(srcdir)/../mkinstalldirs $(top_srcdir)/po/Make-in pread.c \ > + ffsll.c mremap.c ftruncate.c yyscript.h yyscript.c \ > $(srcdir)/../depcomp $(srcdir)/../ylwrap > ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 > am__aclocal_m4_deps = $(top_srcdir)/../config/depstand.m4 \ > > I have to filter out this difference every time I run automake at home. > > Both generate identical results for gold/testsuite/Makefile.in, though. > I ran into the same problem, but it was on the same machine. When I ran automake twice, I got different Makefile.in. -- H.J.