From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10006 invoked by alias); 13 Feb 2007 09:25:42 -0000 Received: (qmail 9970 invoked by uid 22791); 13 Feb 2007 09:25:40 -0000 X-Spam-Check-By: sourceware.org Received: from pollux.ds.pg.gda.pl (HELO pollux.ds.pg.gda.pl) (153.19.208.7) by sourceware.org (qpsmtpd/0.31) with ESMTP; Tue, 13 Feb 2007 09:25:31 +0000 Received: from localhost (localhost [127.0.0.1]) by pollux.ds.pg.gda.pl (Postfix) with ESMTP id 5E32BE1CBB; Tue, 13 Feb 2007 10:25:22 +0100 (CET) Received: from pollux.ds.pg.gda.pl ([127.0.0.1]) by localhost (pollux.ds.pg.gda.pl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id iX9w36A6uR6u; Tue, 13 Feb 2007 10:25:22 +0100 (CET) Received: from piorun.ds.pg.gda.pl (piorun.ds.pg.gda.pl [153.19.208.8]) by pollux.ds.pg.gda.pl (Postfix) with ESMTP id DA96EE1C93; Tue, 13 Feb 2007 10:25:21 +0100 (CET) Received: from blysk.ds.pg.gda.pl (macro@blysk.ds.pg.gda.pl [153.19.208.6]) by piorun.ds.pg.gda.pl (8.13.8/8.13.8) with ESMTP id l1D9PPSp023512; Tue, 13 Feb 2007 10:25:26 +0100 Date: Tue, 13 Feb 2007 09:25:00 -0000 From: "Maciej W. Rozycki" To: Tom Tromey cc: Daniel Jacobowitz , DJ Delorie , gcc-patches@gcc.gnu.org, binutils@sourceware.org, gdb-patches@sourceware.org, newlib@sourceware.org Subject: Re: Updating top-level autoconf to 2.59 In-Reply-To: Message-ID: References: <20070111225346.GA1335@nevyn.them.org> <20070207193352.GA13757@nevyn.them.org> <20070208222020.GA2267@nevyn.them.org> <200702082254.l18MsOuR028641@greed.delorie.com> <20070209151558.GA7193@nevyn.them.org> <20070209153841.GA12038@nevyn.them.org> <20070209161658.GA13966@nevyn.them.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Status: Clean 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 X-SW-Source: 2007-02/txt/msg00177.txt.bz2 On Fri, 9 Feb 2007, Tom Tromey wrote: > Maciej> Indeed, though they are not fatal. Perhaps Makefile.in files > Maciej> in the affected directories (Makefile.am are OK as > Maciej> sufficiently new automake will deal with that) could get > Maciej> updated beforehand? It should not hurt at all. > > I think automake 1.10 requires the new autoconf. So, Makefile.ins > can't be updated first. Well, adding a definition of the $(datarootdir) variable like this: datarootdir = @datadir@ datadir = $(datarootdir) should not require any updates for tools and can then be converted to the final form of: datarootdir = @datarootdir@ datadir = @datadir@ for Makefile.in or removed altogether for Makefile.am files once the tools have been updated. At least it seems to work on my system. :-) Maciej