From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 88569 invoked by alias); 18 Jun 2018 03:05:17 -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 87793 invoked by uid 89); 18 Jun 2018 03:05:17 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,KAM_NUMSUBJECT,SPF_HELO_PASS,SPF_PASS autolearn=no version=3.3.2 spammy=HTo:U*amodra, wondering, nodist, H*f:sk:8b17a50 X-Spam-User: qpsmtpd, 2 recipients X-HELO: smtp.polymtl.ca Received: from smtp.polymtl.ca (HELO smtp.polymtl.ca) (132.207.4.11) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 18 Jun 2018 03:05:15 +0000 Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id w5I353qf031312 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Sun, 17 Jun 2018 23:05:08 -0400 Received: from [10.0.0.11] (unknown [192.222.164.54]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 3AC0F1E529; Sun, 17 Jun 2018 23:05:03 -0400 (EDT) Subject: Re: [PATCH 1/2] Bump to autoconf 2.69 and automake 1.15.1 To: Alan Modra Cc: Nick Clifton , gdb-patches@sourceware.org, binutils@sourceware.org, Simon Marchi References: <20180615004309.29913-1-simon.marchi@polymtl.ca> <20180616013916.GW7660@bubble.grove.modra.org> <8b17a501-41ca-4a7e-ba4d-bc498eb27d85@polymtl.ca> <20180618024632.GZ7660@bubble.grove.modra.org> From: Simon Marchi Message-ID: <53f0aeb6-152e-5d42-947b-dce42ad8c1c0@polymtl.ca> Date: Mon, 18 Jun 2018 03:05:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <20180618024632.GZ7660@bubble.grove.modra.org> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Poly-FromMTA: (simark.ca [158.69.221.121]) at Mon, 18 Jun 2018 03:05:03 +0000 X-IsSubscribed: yes X-SW-Source: 2018-06/txt/msg00435.txt.bz2 On 2018-06-17 10:46 PM, Alan Modra wrote: >> 1. About aclocal.m4's, there are a bunch more generated from other versions of >> automake than 1.15.1: > [snip] > >> Should I make sure to re-generate all of them? > > Yes, I think that should be done whenever updating the version of > autotools. Noted. > I also just noticed these 1.11 version specifiers that probably should > be updated to 1.15: > ./bfd/Makefile.am:AUTOMAKE_OPTIONS = 1.11 no-dist foreign > ./gas/Makefile.am:AUTOMAKE_OPTIONS = 1.11 dejagnu foreign no-dist subdir-objects > ./gprof/Makefile.am:AUTOMAKE_OPTIONS = 1.11 foreign no-dist no-texinfo.tex info-in-builddir > ./opcodes/Makefile.am:AUTOMAKE_OPTIONS = 1.11 foreign no-dist I simply removed them in my latest version of the patch. I think it is only useful to put it if you let the user of you Makefile.am use the version of automake they want, but want to put a lower bound on the version of automake that will work. In our case we force people to use a specific version anyway... >> 2. How do I update those */doc/Makefile.in? > > Andreas has already given the canonical answer, but something like the > following should work too. > > cd ~/src/binutils-gdb/bfd && automake-1.15 --foreign doc/Makefile > cd ~/src/binutils-gdb/binutils && automake-1.15 --foreign doc/Makefile > cd ~/src/binutils-gdb/gas && automake-1.15 --foreign doc/Makefile Ok, thanks. Maintainer mode does update them, but I was wondering how to do it by hand. I'll post a new version once the sync-with-gcc patches are merged. Simon