From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7771 invoked by alias); 24 Oct 2008 21:57:29 -0000 Received: (qmail 7746 invoked by uid 22791); 24 Oct 2008 21:57:28 -0000 X-Spam-Check-By: sourceware.org Received: from NaN.false.org (HELO nan.false.org) (208.75.86.248) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 24 Oct 2008 21:56:41 +0000 Received: from nan.false.org (localhost [127.0.0.1]) by nan.false.org (Postfix) with ESMTP id 73BD810812; Fri, 24 Oct 2008 21:56:38 +0000 (GMT) Received: from caradoc.them.org (209.195.188.212.nauticom.net [209.195.188.212]) by nan.false.org (Postfix) with ESMTP id 4C31C106D8; Fri, 24 Oct 2008 21:56:38 +0000 (GMT) Received: from drow by caradoc.them.org with local (Exim 4.69) (envelope-from ) id 1KtUe5-0005Gq-El; Fri, 24 Oct 2008 17:56:37 -0400 Date: Fri, 24 Oct 2008 21:57:00 -0000 From: Daniel Jacobowitz To: Andreas Schwab Cc: gcc-patches@gcc.gnu.org, binutils@sourceware.org, gdb-patches@sourceware.org Subject: Re: RFA: Save LDFLAGS and CPPFLAGS at the top level Message-ID: <20081024215637.GA19701@caradoc.them.org> Mail-Followup-To: Andreas Schwab , gcc-patches@gcc.gnu.org, binutils@sourceware.org, gdb-patches@sourceware.org References: <20081021201533.GA17491@caradoc.them.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.17 (2008-05-11) X-IsSubscribed: yes Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2008-10/txt/msg00221.txt.bz2 On Fri, Oct 24, 2008 at 11:41:43PM +0200, Andreas Schwab wrote: > Daniel Jacobowitz writes: > > > @@ -172,6 +174,7 @@ HOST_EXPORTS = \ > > ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \ > > CFLAGS="$(CFLAGS)"; export CFLAGS; \ > > CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \ > > + CPPFLAGS="$(CFLAGS)"; export CPPFLAGS; \ > ^^^^^^ > s/CFLAGS/CPPFLAGS/? Gah. Obvious fix being checked in now. -- Daniel Jacobowitz CodeSourcery 2008-10-24 Daniel Jacobowitz * Makefile.tpl (HOST_EXPORTS): Correct CPPFLAGS typo. * Makefile.in: Regenerated. Index: Makefile.in =================================================================== --- Makefile.in (revision 141350) +++ Makefile.in (working copy) @@ -174,7 +174,7 @@ HOST_EXPORTS = \ ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \ CFLAGS="$(CFLAGS)"; export CFLAGS; \ CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \ - CPPFLAGS="$(CFLAGS)"; export CPPFLAGS; \ + CPPFLAGS="$(CPPFLAGS)"; export CPPFLAGS; \ CXX="$(CXX)"; export CXX; \ CXXFLAGS="$(CXXFLAGS)"; export CXXFLAGS; \ AR="$(AR)"; export AR; \ Index: Makefile.tpl =================================================================== --- Makefile.tpl (revision 141350) +++ Makefile.tpl (working copy) @@ -177,7 +177,7 @@ HOST_EXPORTS = \ ADA_CFLAGS="$(ADA_CFLAGS)"; export ADA_CFLAGS; \ CFLAGS="$(CFLAGS)"; export CFLAGS; \ CONFIG_SHELL="$(SHELL)"; export CONFIG_SHELL; \ - CPPFLAGS="$(CFLAGS)"; export CPPFLAGS; \ + CPPFLAGS="$(CPPFLAGS)"; export CPPFLAGS; \ CXX="$(CXX)"; export CXX; \ CXXFLAGS="$(CXXFLAGS)"; export CXXFLAGS; \ AR="$(AR)"; export AR; \