This is the mail archive of the gdb-patches@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[commit/config] Disable configure.tgt code modifying configdirs


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
Index: ChangeLog
2005-01-07  Andrew Cagney  <cagney@gnu.org>

	* 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 ;;
 

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]