From: Jason Molenda Date: Fri, 5 Apr 1996 16:32:37 +0000 (+0000) Subject: * configure.in (host==solaris): Pass only the first word of $CC X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e94c0e40b2d713f4bce23a4b4affcd92cd923c5c;p=binutils-gdb.git * configure.in (host==solaris): Pass only the first word of $CC to /usr/bin/which when checking if we're using /usr/ccs/bin/cc. /usr/ucb/which on Solaris barfs out an error if $CC is set to seomthing like "cc -xcg92" or "gcc -mv8". It is harmless, but it looks bad. --- diff --git a/ChangeLog b/ChangeLog index 558f3a29dfc..b6aa1410f28 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Apr 5 08:17:57 1996 Jason Molenda (crash@phydeaux.cygnus.com) + + * configure.in (host==solaris): Pass only the first word of $CC + to /usr/bin/which when checking if we're using /usr/ccs/bin/cc. + Fri Apr 5 03:16:13 1996 Jason Molenda (crash@phydeaux.cygnus.com) * Makefile.in (BASE_FLAGS_TO_PASS): pass down $(MAKE). diff --git a/configure.in b/configure.in index c668cc47a6b..534999c75c0 100644 --- a/configure.in +++ b/configure.in @@ -693,7 +693,8 @@ rm -f conftest* # The Solaris /usr/ucb/cc compiler does not appear to work. case "${host}" in sparc-sun-solaris2*) - if [ "`/usr/bin/which ${CC-cc}`" = "/usr/ucb/cc" ] ; then + CCBASE="`echo ${CC-cc} | sed 's/ .*$//'`" + if [ "`/usr/bin/which $CCBASE`" = "/usr/ucb/cc" ] ; then could_use= [ -d /opt/SUNWspro/bin ] && could_use="/opt/SUNWspro/bin" if [ -d /opt/cygnus/bin ] ; then