From: Ken Raeburn Date: Wed, 2 Aug 1995 20:39:02 +0000 (+0000) Subject: * configure.in (appdirs): Use =, not ==, in test expression when trying to X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=80aa15047a4914af1bce95899374446222dd8469;p=binutils-gdb.git * configure.in (appdirs): Use =, not ==, in test expression when trying to build the text to print in the warning message for Solaris users. --- diff --git a/configure.in b/configure.in index a38a0386df9..68aaa89e5f3 100644 --- a/configure.in +++ b/configure.in @@ -135,7 +135,7 @@ case "${host}" in could_use= [ -d /opt/SUNWspro/bin ] && could_use="/opt/SUNWspro/bin" if [ -d /opt/cygnus/bin ] ; then - if [ "$could_use" == "" ] ; then + if [ "$could_use" = "" ] ; then could_use="/opt/cygnus/bin" else could_use="$could_use or /opt/cygnus/bin"