From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26405 invoked by alias); 21 Jun 2004 23:02:37 -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 26369 invoked from network); 21 Jun 2004 23:02:36 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 21 Jun 2004 23:02:36 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.10/8.12.10) with ESMTP id i5LN1Le1000682; Mon, 21 Jun 2004 19:01:21 -0400 Received: from post-office.corp.redhat.com (post-office.corp.redhat.com [172.16.52.227]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i5LN1K013660; Mon, 21 Jun 2004 19:01:20 -0400 Received: from greed.delorie.com (dj.cipe.redhat.com [10.0.0.222]) by post-office.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i5LN1K921422; Mon, 21 Jun 2004 19:01:20 -0400 Received: from greed.delorie.com (localhost [127.0.0.1]) by greed.delorie.com (8.12.11/8.12.10) with ESMTP id i5LN1K6M030868; Mon, 21 Jun 2004 19:01:20 -0400 Received: (from dj@localhost) by greed.delorie.com (8.12.11/8.12.11/Submit) id i5LN1KqT030864; Mon, 21 Jun 2004 19:01:20 -0400 Date: Mon, 21 Jun 2004 23:02:00 -0000 Message-Id: <200406212301.i5LN1KqT030864@greed.delorie.com> From: DJ Delorie To: me@cgf.cx CC: gdb-patches@sourceware.org, binutils@sourceware.org, gcc-patches@gcc.gnu.org In-reply-to: <20040621225952.GA9948@coe.casa.cgf.cx> (message from Christopher Faylor on Mon, 21 Jun 2004 18:59:52 -0400) Subject: Re: [RFA] minor top-level configure.in fix References: <20040621225952.GA9948@coe.casa.cgf.cx> X-SW-Source: 2004-06/txt/msg00489.txt.bz2 > I think this qualifies as an obvious fix. Ok to checkin? Yeah. Why is one quoted and the other not, though? > 2004-06-21 Christopher Faylor > > * configure.in: Check for srcdir/winsup rather than > build directory winsup. > * configure: Regenerate. > > Index: configure.in > =================================================================== > RCS file: /cvs/uberbaum/configure.in,v > retrieving revision 1.296 > diff -d -u -p -r1.296 configure.in > --- configure.in 17 Jun 2004 19:54:25 -0000 1.296 > +++ configure.in 21 Jun 2004 22:58:48 -0000 > @@ -586,7 +586,7 @@ case "${target}" in > target_configdirs="$target_configdirs target-libtermcap target-winsup" > noconfigdirs="$noconfigdirs target-gperf target-libgloss ${libgcj}" > # always build newlib if winsup directory is present. > - if test -d winsup > + if test -d "$srcdir/winsup" > then > skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'` > else > Index: configure > =================================================================== > RCS file: /cvs/uberbaum/configure,v > retrieving revision 1.158 > diff -d -u -p -r1.158 configure > --- configure 17 Jun 2004 19:54:25 -0000 1.158 > +++ configure 21 Jun 2004 22:58:49 -0000 > @@ -1366,7 +1366,7 @@ case "${target}" in > target_configdirs="$target_configdirs target-libtermcap target-winsup" > noconfigdirs="$noconfigdirs target-gperf target-libgloss ${libgcj}" > # always build newlib if winsup directory is present. > - if test -d winsup > + if test -d $srcdir/winsup > then > skipdirs=`echo " ${skipdirs} " | sed -e 's/ target-newlib / /'` > else >