From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22390 invoked by alias); 17 Feb 2003 22:31:52 -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 22383 invoked from network); 17 Feb 2003 22:31:52 -0000 Received: from unknown (HELO hub.ott.qnx.com) (209.226.137.76) by 172.16.49.205 with SMTP; 17 Feb 2003 22:31:52 -0000 Received: from smtp.ott.qnx.com (smtp.ott.qnx.com [10.0.2.158]) by hub.ott.qnx.com (8.9.3/8.9.3) with ESMTP id RAA20488; Mon, 17 Feb 2003 17:20:22 -0500 Received: from catdog ([10.4.2.2]) by smtp.ott.qnx.com (8.8.8/8.6.12) with SMTP id RAA23558; Mon, 17 Feb 2003 17:31:51 -0500 Message-ID: <06c201c2d6d4$5c59e040$0202040a@catdog> From: "Kris Warkentin" To: "Andrew Cagney" , References: <200302172201.h1HM1b300335@torrens.toronto.redhat.com> Subject: Re: [commit] revert host != target patch Date: Mon, 17 Feb 2003 22:31:00 -0000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-SW-Source: 2003-02/txt/msg00361.txt.bz2 DOH! I was so excited by your patch that I just got rid of the last define in my nm-nto.h. I guess it will be an empty file.... cheers, Kris ----- Original Message ----- From: "Andrew Cagney" To: Sent: Monday, February 17, 2003 5:01 PM Subject: [commit] revert host != target patch > FYI, I've reverted my host!=target patch. It messes up with crosses > for some reason. > > 2003-02-17 Andrew Cagney > > * configure.in: Revert ${target} != ${host}. > > Index: configure > =================================================================== > RCS file: /cvs/src/src/gdb/configure,v > retrieving revision 1.124 > diff -u -r1.124 configure > --- configure 17 Feb 2003 16:58:01 -0000 1.124 > +++ configure 17 Feb 2003 21:53:07 -0000 > @@ -10889,7 +10889,7 @@ > EOF > cat >> $CONFIG_STATUS <<\EOF > > -if test "${target}" != "${host}"; then > +if test "${nativefile}" = ""; then > < Makefile \ > sed -e '/^NATDEPFILES[ ]*=.*\\$/,/[^\\]$/s/^/# /' \ > -e '/^NATDEPFILES[ ]*=/s/^/# /' \ > Index: configure.in > =================================================================== > RCS file: /cvs/src/src/gdb/configure.in,v > retrieving revision 1.123 > diff -u -r1.123 configure.in > --- configure.in 17 Feb 2003 16:58:02 -0000 1.123 > +++ configure.in 17 Feb 2003 21:53:07 -0000 > @@ -1398,7 +1398,7 @@ > dnl Autoconf doesn't provide a mechanism for modifying definitions > dnl provided by makefile fragments. > dnl > -if test "${target}" != "${host}"; then > +if test "${nativefile}" = ""; then > < Makefile \ > sed -e '/^NATDEPFILES[[ ]]*=.*\\$/,/[[^\\]]$/s/^/# /' \ > -e '/^NATDEPFILES[[ ]]*=/s/^/# /' \ > >