From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13685 invoked by alias); 8 Oct 2003 00:07:17 -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 13663 invoked from network); 8 Oct 2003 00:07:17 -0000 Received: from unknown (HELO capitol.mail.pas.earthlink.net) (207.217.120.180) by sources.redhat.com with SMTP; 8 Oct 2003 00:07:17 -0000 Received: from ip216-26-76-90.dsl.du.teleport.com ([216.26.76.90] helo=kanga.canids.net) by capitol.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 1A71rH-0002x3-00; Tue, 07 Oct 2003 17:07:15 -0700 Received: from grayscale.local (grayscale.local [192.168.1.4]) by kanga.canids.net (Postfix) with ESMTP id 5CAE1158F81; Tue, 7 Oct 2003 17:07:14 -0700 (PDT) From: Felix Lee To: "Theodore A. Roth" , gdb-patches@sources.redhat.com Subject: Re: [RFA] more sed fixes for Makefile.in In-Reply-To: Message from Daniel Jacobowitz of "Tue, 07 Oct 2003 19:50:54 EDT." <20031007235054.GA14654@nevyn.them.org> Date: Wed, 08 Oct 2003 00:07:00 -0000 Message-Id: <20031008000714.5CAE1158F81@kanga.canids.net> X-SW-Source: 2003-10/txt/msg00189.txt.bz2 Daniel Jacobowitz : > I think you may be right about the -e -e thing, but autoconf 2.5x and > 2.13 both use ; instead. yeah. looks like the right way these days is sed -e $$t no quotes around the $$t, because configure does the quoting (and uses 's,x,x,' for null transformation). I just looked, there are lots of old configures in the tree that don't do that quoting, but I think they're in directories that don't use program_transform_name, so it might not matter. also, sim/common/configure.in has a t='\$(program_transform_name)'; echo gcc | sed -e 's/x/x/' \$\$t; \ that needs to be fixed --