diff options
author | Ken Raeburn <raeburn@cygnus> | 1995-08-02 20:39:02 +0000 |
---|---|---|
committer | Ken Raeburn <raeburn@cygnus> | 1995-08-02 20:39:02 +0000 |
commit | 80aa15047a4914af1bce95899374446222dd8469 (patch) | |
tree | 8862e5162e64a8f4ff3bf9e2748fda27c6bb03e2 /configure.in | |
parent | 28661653c7606372b5fee5fcfb9de3e0011ef276 (diff) | |
download | gdb-80aa15047a4914af1bce95899374446222dd8469.zip gdb-80aa15047a4914af1bce95899374446222dd8469.tar.gz gdb-80aa15047a4914af1bce95899374446222dd8469.tar.bz2 |
* configure.in (appdirs): Use =, not ==, in test expression when trying to
build the text to print in the warning message for Solaris users.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index a38a038..68aaa89 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" |