aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Elliston <bje@gnu.org>2001-09-19 06:07:36 +0000
committerBen Elliston <bje@gnu.org>2001-09-19 06:07:36 +0000
commit5df2a48314f46b960b3a97be9493fe574a40fb4e (patch)
treed015e17da4b3aabaf795149ae579055ebb2c3362
parent5733509e25f40d3640c1648dcb89ae5234d097e8 (diff)
downloadnewlib-5df2a48314f46b960b3a97be9493fe574a40fb4e.zip
newlib-5df2a48314f46b960b3a97be9493fe574a40fb4e.tar.gz
newlib-5df2a48314f46b960b3a97be9493fe574a40fb4e.tar.bz2
2001-09-19 Ben Elliston <bje@redhat.com>
* configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on Solaris when testing for the /usr/ucb/cc compiler; it has incorrect semantics. Use the shell built-in "type" command instead.
-rw-r--r--ChangeLog6
-rw-r--r--configure.in2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 50f1c99..567553d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-09-19 Ben Elliston <bje@redhat.com>
+
+ * configure.in (sparc-sun-solaris2*): Don't use /usr/bin/which on
+ Solaris when testing for the /usr/ucb/cc compiler; it has incorrect
+ semantics. Use the shell built-in "type" command instead.
+
2001-09-15 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
* config.sub: Reverted the earlier change, this version is not the
diff --git a/configure.in b/configure.in
index 6b7a0cd..4102e59 100644
--- a/configure.in
+++ b/configure.in
@@ -1212,7 +1212,7 @@ rm -f conftest*
case "${host}" in
sparc-sun-solaris2*)
CCBASE="`echo ${CC-cc} | sed 's/ .*$//'`"
- if [ "`/usr/bin/which $CCBASE`" = "/usr/ucb/cc" ] ; then
+ if [ "`type $CCBASE | sed 's/^[^/]*//'`" = "/usr/ucb/cc" ] ; then
could_use=
[ -d /opt/SUNWspro/bin ] && could_use="/opt/SUNWspro/bin"
if [ -d /opt/cygnus/bin ] ; then