From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18086 invoked by alias); 2 Dec 2004 14:15:06 -0000 Mailing-List: contact binutils-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sources.redhat.com Received: (qmail 18005 invoked from network); 2 Dec 2004 14:14:59 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 2 Dec 2004 14:14:59 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id iB2EEnwR004875; Thu, 2 Dec 2004 09:14:54 -0500 Received: from talisman.cambridge.redhat.com (talisman.cambridge.redhat.com [172.16.18.81]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id iB2EEmr00350; Thu, 2 Dec 2004 09:14:48 -0500 Received: from talisman.cambridge.redhat.com (localhost.localdomain [127.0.0.1]) by talisman.cambridge.redhat.com (8.13.1/8.12.10) with ESMTP id iB2EElrr029669; Thu, 2 Dec 2004 14:14:47 GMT Received: (from rsandifo@localhost) by talisman.cambridge.redhat.com (8.13.1/8.12.10/Submit) id iB2EEjhJ029668; Thu, 2 Dec 2004 14:14:45 GMT X-Authentication-Warning: talisman.cambridge.redhat.com: rsandifo set sender to rsandifo@redhat.com using -f To: gcc-patches@gcc.gnu.org Cc: binutils@sources.redhat.com, gdb-patches@sources.redhat.com Subject: Re: Factor configure-time gcc version checks (patch 1/4 for PR 7305) References: <87is7tejx4.fsf@redhat.com> From: Richard Sandiford Date: Thu, 02 Dec 2004 14:15:00 -0000 In-Reply-To: <87is7tejx4.fsf@redhat.com> (Richard Sandiford's message of "Thu, 25 Nov 2004 20:46:31 +0000") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2004-12/txt/msg00019.txt.bz2 Richard Sandiford writes: > * configure.in: Include config/gcc-version.m4. Use TL_AC_GCC_VERSION > to set gcc_version_trigger. Remove some now-redundant AC_SUBSTs. Argh! This bit broke src/ because of the config.status dependency on $(gcc_version_trigger) in the top-level Makefile. I've installed the patch below as obvious. Sorry all for breakage. Richard * configure.in: Clear gcc_version_trigger if the file doesn't exist. * configure: Regenerate. Index: configure.in =================================================================== RCS file: /cvs/src/src/configure.in,v retrieving revision 1.252 retrieving revision 1.253 diff -u -d -p -r1.252 -r1.253 --- configure.in 2 Dec 2004 11:09:33 -0000 1.252 +++ configure.in 2 Dec 2004 14:08:00 -0000 1.253 @@ -112,6 +112,8 @@ if test -f $gcc_version_trigger ; then ac_configure_args="$ac_configure_args --with-gcc-version-trigger=$gcc_version_trigger" ;; esac +else + gcc_version_trigger= fi ### To add a new directory to the tree, first choose whether it is a target