From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6255 invoked by alias); 31 Dec 2002 18:02:00 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 6228 invoked from network); 31 Dec 2002 18:01:59 -0000 Received: from unknown (HELO mout1.freenet.de) (194.97.50.132) by 209.249.29.67 with SMTP; 31 Dec 2002 18:01:59 -0000 Received: from [194.97.50.144] (helo=mx1.freenet.de) by mout1.freenet.de with asmtp (Exim 4.10) id 18TQi3-0008KA-00; Tue, 31 Dec 2002 19:01:47 +0100 Received: from b01cd.pppool.de ([213.7.1.205] helo=whitebox.local) by mx1.freenet.de with esmtp (Exim 4.10 #1) id 18TQi2-0004fx-00; Tue, 31 Dec 2002 19:01:46 +0100 Received: from whitebox.local (localhost [127.0.0.1]) by whitebox.local (8.12.6/8.12.6/SuSE Linux 0.6) with ESMTP id gBVHwNNW003622; Tue, 31 Dec 2002 18:58:24 +0100 Received: (from andreas@localhost) by whitebox.local (8.12.6/8.12.6/Submit) id gBVHwN8g003619; Tue, 31 Dec 2002 18:58:23 +0100 X-Authentication-Warning: whitebox.local: andreas set sender to schwab@suse.de using -f To: gcc-patches@gcc.gnu.org, binutils@sources.redhat.com, gdb-patches@sources.redhat.com Subject: (toplevel, committed) Fix use of $program_transform_name X-Yow: Is there something I should be DOING with a GLAZED DONUT?? From: Andreas Schwab Date: Tue, 31 Dec 2002 11:02:00 -0000 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-12/txt/msg00769.txt.bz2 There were some oldstyle uses of $program_transform_name left. Committed as obvious. Andreas. 2002-12-31 Andreas Schwab * configure.in: Fix use of $program_transform_name. * configure: Regenerated. Index: configure.in =================================================================== RCS file: /cvs/gcc/gcc/configure.in,v retrieving revision 1.204 diff -u -a -p -a -u -p -r1.204 configure.in --- configure.in 31 Dec 2002 03:12:53 -0000 1.204 +++ configure.in 31 Dec 2002 17:50:51 -0000 @@ -1898,7 +1898,7 @@ elif test -d ${srcdir}/gcc; then elif test "$host" = "$target"; then CC_FOR_TARGET='$(CC)' else - CC_FOR_TARGET=`echo gcc | sed -e 's/x/x/' ${program_transform_name}` + CC_FOR_TARGET=`echo gcc | sed "${program_transform_name}"` fi CC_FOR_TARGET=$CC_FOR_TARGET' $(FLAGS_FOR_TARGET)' @@ -1909,7 +1909,7 @@ elif test -d ${srcdir}/gcc; then elif test "$host" = "$target"; then GCJ_FOR_TARGET='gcj' else - GCJ_FOR_TARGET=`echo gcj | sed -e 's/x/x/' ${program_transform_name}` + GCJ_FOR_TARGET=`echo gcj | sed "${program_transform_name}"` fi GCJ_FOR_TARGET=$GCJ_FOR_TARGET' $(FLAGS_FOR_TARGET)' @@ -1931,7 +1931,7 @@ elif test "$host" = "$target"; then CXX_FOR_TARGET='$(CXX)' RAW_CXX_FOR_TARGET=${CXX_FOR_TARGET} else - CXX_FOR_TARGET=`echo c++ | sed -e 's/x/x/' ${program_transform_name}` + CXX_FOR_TARGET=`echo c++ | sed "${program_transform_name}"` RAW_CXX_FOR_TARGET=${CXX_FOR_TARGET} fi CXX_FOR_TARGET=$CXX_FOR_TARGET' $(FLAGS_FOR_TARGET)'