* configure.in (appdirs): Use =, not ==, in test expression when trying to

build the text to print in the warning message for Solaris users.
This commit is contained in:
Ken Raeburn 1995-08-02 20:39:02 +00:00
parent 28661653c7
commit 80aa15047a
1 changed files with 1 additions and 1 deletions

View File

@ -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"