From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 30864 invoked by alias); 6 May 2015 09:37:31 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 30842 invoked by uid 89); 6 May 2015 09:37:31 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.0 required=5.0 tests=AWL,BAYES_40,SPF_HELO_PASS,SPF_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-Spam-User: qpsmtpd, 3 recipients X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Wed, 06 May 2015 09:37:30 +0000 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id t469bSh8032387 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Wed, 6 May 2015 05:37:28 -0400 Received: from tucnak.zalov.cz (ovpn-116-89.ams2.redhat.com [10.36.116.89]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t469bQYo021473 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 6 May 2015 05:37:28 -0400 Received: from tucnak.zalov.cz (localhost [127.0.0.1]) by tucnak.zalov.cz (8.14.9/8.14.9) with ESMTP id t469bOm6011999; Wed, 6 May 2015 11:37:24 +0200 Received: (from jakub@localhost) by tucnak.zalov.cz (8.14.9/8.14.9/Submit) id t469bLY6011998; Wed, 6 May 2015 11:37:21 +0200 Date: Wed, 06 May 2015 09:37:00 -0000 From: Jakub Jelinek To: Michael Haubenwallner Cc: Paolo Bonzini , DJ Delorie , Nathanael Nerode , Alexandre Oliva , Ralf Wildenhues , Jan-Benedict Glaw , GCC Patches , Bernd Edlinger , Janne Blomqvist , Kai Tietz Subject: Re: [patch 1/28] top-level: Use automake-1.11.6 Message-ID: <20150506093721.GX1751@tucnak.redhat.com> Reply-To: Jakub Jelinek References: <5548E9C3.1090408@ssi-schaefer.com> <5549D5F1.50308@ssi-schaefer.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5549D5F1.50308@ssi-schaefer.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2015-05/txt/msg00409.txt.bz2 On Wed, May 06, 2015 at 10:50:57AM +0200, Michael Haubenwallner wrote: > > Am 2015-05-05 um 18:03 schrieb Michael Haubenwallner: > > Now that gcc-5 is out, what about an automake-1.11.6 update for gcc-6? > > Patch for top-level files. > 2015-05-06 Michael Haubenwallner > > Use automake-1.11.6. > compile: Recreate. > config.guess: Recreate. > config.sub: Recreate. > depcomp: Recreate. > install-sh: Recreate. > missing: Recreate. > mkinstalldirs: Recreate. General comment on the ChangeLog entries in all your patches: 1) two spaces before < rather than one. 2) each filename in the ChangeLog should be preceeded by tab followed by * and space. So: * compile: Recreate. 3) perhaps drop the Use automake-1.11.6. line and just write: * compile: Regenerated with automake-1.11.6. * config.guess: Likewise. * config.sub: Likewise. ... Jakub