aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid D. Zuhn <zoo@cygnus>1992-12-25 01:27:18 +0000
committerDavid D. Zuhn <zoo@cygnus>1992-12-25 01:27:18 +0000
commit83a476789119fb0423c687f3b608cdc25d403a79 (patch)
tree0879f2576180974bfb9374bf5a19df6252e38f8a
parent3c60e496c9d1d451ff5513f64144b58152f01a21 (diff)
downloadgdb-83a476789119fb0423c687f3b608cdc25d403a79.zip
gdb-83a476789119fb0423c687f3b608cdc25d403a79.tar.gz
gdb-83a476789119fb0423c687f3b608cdc25d403a79.tar.bz2
don't remove binutils from Solaris builds
-rw-r--r--ChangeLog4
-rw-r--r--configure.in11
2 files changed, 12 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 1f3d2fd..37edd19 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Dec 24 17:26:24 1992 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
+
+ * configure.in: don't remove binutils from Solaris builds
+
Thu Dec 24 14:08:38 1992 david d`zoo' zuhn (zoo@cygnus.com)
* Makefile.in: get rid of earlier definitions for *clean,
diff --git a/configure.in b/configure.in
index 4331f7c..60140e3 100644
--- a/configure.in
+++ b/configure.in
@@ -40,7 +40,11 @@ host_tools="texinfo byacc flex bison binutils ld gas gcc gdb make patch
target_libs="libm xiberty newlib libg++"
# these tools are built using the target libs, and are intended to run only in the
-# target environment. we currently have none
+# target environment. we currently have none.
+#
+# note: any program that uses libraries that are in the "target_libs" list
+# belongs in this list. those programs are also very likely candidates for
+# the "native_only" list which follows
#
target_tools=
@@ -54,7 +58,8 @@ target_tools=
# directories to be built in the native environment only
#
-native_only="m4 autoconf ispell grep diff rcs cvs sed fileutils shellutils textutils wdiff find emacs"
+native_only="autoconf cvs diff emacs fileutils find grep ispell m4
+ rcs sed shellutils textutils wdiff"
# directories to be built in the target environment only
#
@@ -145,7 +150,7 @@ case "${target}" in
configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'`
;;
*-*-solaris2)
- configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'`
+ configdirs=`echo ${configdirs} | sed -e 's/ld//;s/gas//'`
;;
esac