From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 16998 invoked by alias); 18 May 2002 01:11:06 -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 16961 invoked from network); 18 May 2002 01:11:04 -0000 Received: from unknown (HELO cygnus.com) (205.180.83.203) by sources.redhat.com with SMTP; 18 May 2002 01:11:04 -0000 Received: from localhost.redhat.com (romulus.sfbay.redhat.com [172.16.27.251]) by runyon.cygnus.com (8.8.7-cygnus/8.8.7) with ESMTP id SAA27122 for ; Fri, 17 May 2002 18:11:03 -0700 (PDT) Received: by localhost.redhat.com (Postfix, from userid 469) id 9937610FC9; Fri, 17 May 2002 21:10:30 -0400 (EDT) From: Elena Zannoni MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15589.43526.467240.375415@localhost.redhat.com> Date: Fri, 17 May 2002 18:11:00 -0000 To: gdb-patches@sources.redhat.com Subject: [RFA/TESTSUITE] Add gdb.arch to configdirs X-SW-Source: 2002-05/txt/msg00771.txt.bz2 I forgot this bit. Ok to commit? Elena 2002-05-17 Elena Zannoni * configure.in (configdirs): Add gdb.arch. * configure: Regenerate. Index: configure =================================================================== RCS file: /cvs/uberbaum/gdb/testsuite/configure,v retrieving revision 1.4 diff -u -p -r1.4 configure --- configure 17 Nov 2000 16:37:48 -0000 1.4 +++ configure 18 May 2002 01:09:12 -0000 @@ -649,7 +649,8 @@ test "$host_alias" != "$target_alias" && # Directories to use in all configurations. -configdirs="gdb.asm \ +configdirs="gdb.arch \ + gdb.asm \ gdb.base \ gdb.c++ \ gdb.java \ @@ -749,12 +750,12 @@ fi # End stuff to support --enable-shared echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6 -echo "configure:753: checking for Cygwin environment" >&5 +echo "configure:754: checking for Cygwin environment" >&5 if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:770: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_cygwin=yes else @@ -782,19 +783,19 @@ echo "$ac_t""$ac_cv_cygwin" 1>&6 CYGWIN= test "$ac_cv_cygwin" = yes && CYGWIN=yes echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 -echo "configure:786: checking for mingw32 environment" >&5 +echo "configure:787: checking for mingw32 environment" >&5 if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:799: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_mingw32=yes else @@ -813,7 +814,7 @@ test "$ac_cv_mingw32" = yes && MINGW32=y echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 -echo "configure:817: checking for executable suffix" >&5 +echo "configure:818: checking for executable suffix" >&5 if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -823,7 +824,7 @@ else rm -f conftest* echo 'int main () { return 0; }' > conftest.$ac_ext ac_cv_exeext= - if { (eval echo configure:827: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then + if { (eval echo configure:828: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then for file in conftest.*; do case $file in *.c | *.o | *.obj | *.ilk | *.pdb) ;; Index: configure.in =================================================================== RCS file: /cvs/uberbaum/gdb/testsuite/configure.in,v retrieving revision 1.4 diff -u -p -r1.4 configure.in --- configure.in 17 Nov 2000 16:37:48 -0000 1.4 +++ configure.in 18 May 2002 01:09:12 -0000 @@ -13,7 +13,8 @@ AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/../.. AC_CANONICAL_SYSTEM # Directories to use in all configurations. -configdirs="gdb.asm \ +configdirs="gdb.arch \ + gdb.asm \ gdb.base \ gdb.c++ \ gdb.java \