From 83a476789119fb0423c687f3b608cdc25d403a79 Mon Sep 17 00:00:00 2001
From: "David D. Zuhn" <zoo@cygnus>
Date: Fri, 25 Dec 1992 01:27:18 +0000
Subject: [PATCH] don't remove binutils from Solaris builds

---
 ChangeLog    |  4 ++++
 configure.in | 11 ++++++++---
 2 files changed, 12 insertions(+), 3 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 1f3d2fdc9f3..37edd191737 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 4331f7c3114..60140e35863 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