aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@cygnus>1995-08-02 20:39:02 +0000
committerKen Raeburn <raeburn@cygnus>1995-08-02 20:39:02 +0000
commit80aa15047a4914af1bce95899374446222dd8469 (patch)
tree8862e5162e64a8f4ff3bf9e2748fda27c6bb03e2 /configure.in
parent28661653c7606372b5fee5fcfb9de3e0011ef276 (diff)
downloadgdb-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.in2
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"