From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24676 invoked by alias); 7 Jan 2005 16:28:26 -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 24571 invoked from network); 7 Jan 2005 16:28:14 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 7 Jan 2005 16:28:14 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j07GS9vF017101 for ; Fri, 7 Jan 2005 11:28:09 -0500 Received: from localhost.redhat.com (vpn50-97.rdu.redhat.com [172.16.50.97]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j07GS8r12766; Fri, 7 Jan 2005 11:28:08 -0500 Received: from [127.0.0.1] (localhost.localdomain [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id F1E487D79; Fri, 7 Jan 2005 11:27:24 -0500 (EST) Message-ID: <41DEB86A.1020201@gnu.org> Date: Fri, 07 Jan 2005 16:28:00 -0000 From: Andrew Cagney User-Agent: Mozilla Thunderbird 0.8 (X11/20041020) MIME-Version: 1.0 To: gdb-patches@sources.redhat.com, Richard Earnshaw Subject: [commit/config] Disable configure.tgt code modifying configdirs Content-Type: multipart/mixed; boundary="------------030009020400070208060801" X-SW-Source: 2005-01/txt/msg00038.txt.bz2 This is a multi-part message in MIME format. --------------030009020400070208060801 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-length: 238 This, as it stands, doesn't work with autoconf (AC_CONFIG_SUBDIRS can't take a variable). I've disabled it for now. Richard, assuming rdi-share is still relevant, we'll need to find a way to handle this this and re-enable it. Andrew --------------030009020400070208060801 Content-Type: text/plain; name="diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="diffs" Content-length: 1898 Index: ChangeLog 2005-01-07 Andrew Cagney * configure.tgt: Disable arm*-*-*, thumb*-*-*, strongarm*-*-*, xscale-*-* and i[34567]86-*-netware* code setting configdirs to rdi-share or nlm. Index: configure.tgt =================================================================== RCS file: /cvs/src/src/gdb/configure.tgt,v retrieving revision 1.156 diff -p -u -r1.156 configure.tgt --- configure.tgt 4 Jan 2005 22:59:44 -0000 1.156 +++ configure.tgt 7 Jan 2005 16:15:31 -0000 @@ -5,8 +5,6 @@ # gdb_target_cpu generic name of CPU # gdb_target name of GDB target definition to use -# This file may also modify configdirs. - # Map target cpu into the config cpu subdirectory name. # The default is $target_cpu. @@ -58,10 +56,16 @@ arm*-*-netbsd* | arm*-*-knetbsd*-gnu) arm-*-nto*) gdb_target=nto ;; arm*-*-* | thumb*-*-* | strongarm*-*-*) gdb_target=embed - configdirs="$configdirs rdi-share" + # FIXME: cagney/2005-01-07: The configdirs + # variable doesn't work with autoconf 2.59. + # Disabled. + # configdirs="$configdirs rdi-share" ;; xscale-*-*) gdb_target=embed - configdirs="$configdirs rdi-share" + # FIXME: cagney/2005-01-07: The configdirs + # variable doesn't work with autoconf 2.59. + # Disabled. + # configdirs="$configdirs rdi-share" ;; avr-*-*) gdb_target=avr ;; @@ -92,7 +96,11 @@ i[34567]86-*-linux*) gdb_target=linux ;; i[34567]86-*-gnu*) gdb_target=i386gnu ;; i[34567]86-*-netware*) gdb_target=i386 - configdirs="${configdirs} nlm" ;; + # FIXME: cagney/2005-01-07: The configdirs + # variable doesn't work with autoconf 2.59. + # Disabled. + # configdirs="${configdirs} nlm" + ;; i[34567]86-*-cygwin*) gdb_target=cygwin ;; i[34567]86-*-*) gdb_target=i386 ;; --------------030009020400070208060801--