From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 8542 invoked by alias); 12 Jul 2002 19:46:35 -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 8490 invoked from network); 12 Jul 2002 19:46:34 -0000 Received: from unknown (HELO nerodeguest) (24.161.107.98) by sources.redhat.com with SMTP; 12 Jul 2002 19:46:34 -0000 Received: from neroden by nerodeguest with local (Exim 3.35 #1 (Debian)) id 17T6LN-0008Rq-00; Fri, 12 Jul 2002 15:44:45 -0400 Date: Fri, 12 Jul 2002 13:03:00 -0000 To: gcc-patches@gcc.gnu.org, gdb-patches@sources.redhat.com, binutils@sources.redhat.com, newlib@sources.redhat.com Cc: dj@redhat.com Subject: [patch] toplevel configure.in: some skipdirs->noconfigdirs Message-ID: <20020712194445.GA32459@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-07/txt/msg00282.txt.bz2 For some reason these targets were adding things to skipdirs rather than noconfigdirs. The only practical difference is that the warning message "This configuration is not supported in the following subdirectories" would not show up. It's simpler for me to clean up the newlib-related code if they use noconfigdirs the way every other target does. So unless someone comes up with a good reason they should behave differently, I suggest this patch. 2002-07-12 Nathanael Nerode * configure.in (*-*-netbsd*): Use noconfigdirs, not skipdirs. * configure.in (powerpc*-*-winnt*): Ditto. * configure.in (powerpc*-*-pe*): Ditto. * configure.in (ppc*-*-pe): Ditto. Index: configure.in =================================================================== RCS file: /cvs/gcc/gcc/configure.in,v retrieving revision 1.173 diff -u -r1.173 configure.in --- configure.in 11 Jul 2002 19:54:04 -0000 1.173 +++ configure.in 12 Jul 2002 19:35:42 -0000 @@ -277,7 +277,7 @@ ;; *-*-netbsd*) # Skip some stuff on all NetBSD configurations. - skipdirs="$skipdirs target-newlib target-libiberty target-libgloss" + noconfigdirs="$noconfigdirs target-newlib target-libiberty target-libgloss" # Skip some stuff that's unsupported on some NetBSD configurations. case "${target}" in @@ -333,7 +333,7 @@ noconfigdirs="$noconfigdirs expect dejagnu" # the C++ libraries don't build on top of CE's C libraries noconfigdirs="$noconfigdirs ${libstdcxx_version}" - skipdirs="$skipdirs target-newlib" + noconfigdirs="$noconfigdirs target-newlib" case "${host}" in *-*-cygwin*) ;; # keep gdb and readline *) noconfigdirs="$noconfigdirs gdb readline ${libstdcxx_version}"