From patchwork Mon Mar 23 20:21:37 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Cary Coutant X-Patchwork-Id: 5766 Received: (qmail 78933 invoked by alias); 23 Mar 2015 20:21:51 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 78863 invoked by uid 89); 23 Mar 2015 20:21:50 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.5 required=5.0 tests=AWL, BAYES_00, RCVD_IN_DNSWL_LOW, SPF_PASS, T_RP_MATCHES_RCVD autolearn=unavailable version=3.3.2 X-HELO: mail-qg0-f45.google.com Received: from mail-qg0-f45.google.com (HELO mail-qg0-f45.google.com) (209.85.192.45) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 23 Mar 2015 20:21:50 +0000 Received: by qgf74 with SMTP id 74so37572197qgf.2 for ; Mon, 23 Mar 2015 13:21:48 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:date :message-id:subject:from:to:cc:content-type; bh=DzFgEYpsxELrBvmWCfBDkLaqBUri4NPfemdNFFRp1/w=; b=ce7hyO5iW7/0H3JhCEJPolynIo8YOKLQ1SHnCwJKZm/H1q0rH6Vv7rIR2aB0Z4dxJB DQsSH2CFax/J1+Uj//LyLBa8sqAW3hpnNPqpwzg3asRHE4ln8XQrLwZSCqsHPj/v5bwQ syw4h3D+/yTkILkk4KTjVlLbXyu1pDVrGeZXfIInfuNcaGlnKQti/3iu+azv3c5vNF8p g7K3c5YJcYsP0KRxVmtemJfD/2gTi3HjJE16hxRfpYVh0+ghN7D7dkC+BmcERd4XLeJi NQOEolQQG1bqOFEVtCz5P2FM1RFvnSW2tulxZ0TD3SluwfNF9Bj3dK8VAsweCmDrCGjz O7VQ== X-Gm-Message-State: ALoCoQledJk80ti0oJAu/2fTPSazIQ9an8IQDDlJ8hLT4emLyDKNobFS4sspFoLi9XLZD/doCFXb MIME-Version: 1.0 X-Received: by 10.140.89.42 with SMTP id u39mr1343265qgd.20.1427142097121; Mon, 23 Mar 2015 13:21:37 -0700 (PDT) Received: by 10.140.99.105 with HTTP; Mon, 23 Mar 2015 13:21:37 -0700 (PDT) In-Reply-To: <20150323124600.GC5438@adacore.com> 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 13:21:37 -0700 Message-ID: Subject: Re: [PATCH] update automake version to 1.11.6 From: Cary Coutant To: Joel Brobecker Cc: gdb-patches , Binutils , Doug Evans X-IsSubscribed: yes > 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: I have to filter out this difference every time I run automake at home. Both generate identical results for gold/testsuite/Makefile.in, though. Is there a known non-determinism somewhere in automake? Maybe 1.11.6 fixed that. -cary --- 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 \