From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22840 invoked by alias); 19 Jun 2002 17:26:58 -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 22788 invoked from network); 19 Jun 2002 17:26:53 -0000 Received: from unknown (HELO nerodeguest) (24.161.107.98) by sources.redhat.com with SMTP; 19 Jun 2002 17:26:53 -0000 Received: from neroden by nerodeguest with local (Exim 3.35 #1 (Debian)) id 17KjDK-0005mH-00; Wed, 19 Jun 2002 13:25:50 -0400 Date: Wed, 19 Jun 2002 10:26:00 -0000 To: gcc-patches@gcc.gnu.org Cc: gdb-patches@sources.redhat.com, binutils@sources.redhat.com, dj@redhat.com Subject: [patch] tiny toplevel configure.in cleanup Message-ID: <20020619172549.GA22201@doctormoo.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.3.28i From: Nathanael Nerode X-SW-Source: 2002-06/txt/msg00369.txt.bz2 This eliminates an unnecessary and confusing variable. 2002-06-19 Nathanael Nerode * configure.in: Eliminate ${gasdir} variable. Index: configure.in =================================================================== RCS file: /cvsroot/gcc/gcc/configure.in,v retrieving revision 1.154 diff -u -r1.154 configure.in --- configure.in 18 Jun 2002 21:58:44 -0000 1.154 +++ configure.in 19 Jun 2002 17:25:54 -0000 @@ -402,7 +402,6 @@ esac skipdirs= -gasdir=gas use_gnu_ld= use_gnu_as= @@ -1283,7 +1282,7 @@ # --without-gnu-ld options for the configure script. if test x${use_gnu_as} = x ; then - if test x${with_gnu_as} != xno && echo " ${configdirs} " | grep " ${gasdir} " > /dev/null 2>&1 && test -d ${srcdir}/${gasdir} ; then + if test x${with_gnu_as} != xno && echo " ${configdirs} " | grep " gas " > /dev/null 2>&1 && test -d ${srcdir}/gas ; then with_gnu_as=yes withoptions="$withoptions --with-gnu-as" fi