From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26738 invoked by alias); 15 Aug 2005 20:23:09 -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 26720 invoked by uid 22791); 15 Aug 2005 20:23:05 -0000 Received: from [195.124.73.12] (HELO ds9.groessler.org) (195.124.73.12) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Mon, 15 Aug 2005 20:23:05 +0000 Received: from ds9.groessler.org (localhost [127.0.0.1]) by ds9.groessler.org (8.12.11/8.12.11/SuSE Linux 8.9.3-0.1) with ESMTP id j7FKMgCv021148; Mon, 15 Aug 2005 22:22:48 +0200 Received: from localhost (chris@localhost) by ds9.groessler.org (8.12.11/8.12.11/Submit) with ESMTP id j7FKMdLI021145; Mon, 15 Aug 2005 22:22:40 +0200 Date: Mon, 15 Aug 2005 20:23:00 -0000 From: Christian Groessler To: cc: Subject: [PATCH]: missing trailing slash in toplevel makefile Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2005-08/txt/msg00218.txt.bz2 Hi, pretty obvious. Ok to apply, or should I report this somewhere else? regards, chris 2005-08-15 Christian Groessler * Makefile.tpl: (USUAL_CC_FOR_TARGET): Add missing trailing slash. * Makefile.in: Regenerate. Index: Makefile.in =================================================================== RCS file: /cvs/src/src/Makefile.in,v retrieving revision 1.219 diff -u -r1.219 Makefile.in --- Makefile.in 8 Aug 2005 09:20:58 -0000 1.219 +++ Makefile.in 15 Aug 2005 20:10:31 -0000 @@ -365,7 +365,7 @@ CONFIGURED_CC_FOR_TARGET=@CONFIGURED_CC_FOR_TARGET@ USUAL_CC_FOR_TARGET = ` \ if [ -f $$r/$(HOST_SUBDIR)/gcc/xgcc ] ; then \ - echo $$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc ; \ + echo $$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/ ; \ else \ if [ '$(host)' = '$(target)' ] ; then \ echo $(CC); \ Index: Makefile.tpl =================================================================== RCS file: /cvs/src/src/Makefile.tpl,v retrieving revision 1.143 diff -u -r1.143 Makefile.tpl --- Makefile.tpl 8 Aug 2005 09:21:05 -0000 1.143 +++ Makefile.tpl 15 Aug 2005 20:10:31 -0000 @@ -368,7 +368,7 @@ CONFIGURED_CC_FOR_TARGET=@CONFIGURED_CC_FOR_TARGET@ USUAL_CC_FOR_TARGET = ` \ if [ -f $$r/$(HOST_SUBDIR)/gcc/xgcc ] ; then \ - echo $$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc ; \ + echo $$r/$(HOST_SUBDIR)/gcc/xgcc -B$$r/$(HOST_SUBDIR)/gcc/ ; \ else \ if [ '$(host)' = '$(target)' ] ; then \ echo $(CC); \