From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 12508 invoked by alias); 6 Aug 2003 23:57:51 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 12470 invoked from network); 6 Aug 2003 23:57:50 -0000 Received: from unknown (HELO mail.codesourcery.com) (65.73.237.138) by sources.redhat.com with SMTP; 6 Aug 2003 23:57:50 -0000 Received: (qmail 14345 invoked from network); 6 Aug 2003 23:55:59 -0000 Received: from egil.codesourcery.com (HELO taltos.codesourcery.com) (zack@66.92.14.122) by mail.codesourcery.com with DES-CBC3-SHA encrypted SMTP; 6 Aug 2003 23:55:59 -0000 Received: by taltos.codesourcery.com (sSMTP sendmail emulation); Wed, 6 Aug 2003 16:55:32 -0700 From: "Zack Weinberg" To: "Douglas B Rupp" Cc: "Richard Kenner" , Subject: Re: Problem in split_basic_block References: <10308062258.AA03807@vlsi1.ultra.nyu.edu> <87brv2mk98.fsf@codesourcery.com> <00f001c35c74$b53866c0$6901a8c0@Jinx> Date: Thu, 07 Aug 2003 00:43:00 -0000 In-Reply-To: <00f001c35c74$b53866c0$6901a8c0@Jinx> (Douglas B. Rupp's message of "Wed, 6 Aug 2003 16:44:29 -0700") Message-ID: <87y8y6l4sr.fsf@codesourcery.com> User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2003-08/txt/msg00411.txt.bz2 "Douglas B Rupp" writes: >> >> > + # This removes the cpu type and manufacturer components and >> > + # replaces "." with "_" in the operating system version. >> > + case $host in *-*-*vms*) >> > + target_alias=`echo $host \ >> > + | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'` >> > + ;; >> > + esac >> >> this should not be necessary > > Target_alias ends up in the installation path, and dots are illegal in VMS > directory names. So fix it in the setting of the installation path, not the target_alias itself. zw