* aclocal.m4 (AC_KRB5_TCL_FIND_CONFIG): Change test syntax a little to keep bash...
authorKen Raeburn <raeburn@mit.edu>
Mon, 7 Feb 2000 16:25:47 +0000 (16:25 +0000)
committerKen Raeburn <raeburn@mit.edu>
Mon, 7 Feb 2000 16:25:47 +0000 (16:25 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12017 dc483132-0cff-0310-8789-dd5450dbe970

src/ChangeLog
src/aclocal.m4

index 7897e2856c2642f993d24876aa56d8332cd15a09..d73ba44547eaf8050801ee373d8e31c886d6f481 100644 (file)
@@ -1,3 +1,8 @@
+2000-02-07  Ken Raeburn  <raeburn@mit.edu>
+
+       * aclocal.m4 (AC_KRB5_TCL_FIND_CONFIG): Change test syntax a
+       little to keep bash happy.
+
 2000-02-04  Tom Yu  <tlyu@mit.edu>
 
        * aclocal.m4: Add support to substitute KRB524_LIB in places.
index dc4b413897e2b385d68078f1218128cfca3cd156..d2e612274e7574d6be92b26f9fe4cbe42081d4f6 100644 (file)
@@ -712,7 +712,8 @@ if test -n "$tcl_conf" ; then
     AC_MSG_CHECKING(Tcl info in $file)
     . $file
     v=$TCL_MAJOR_VERSION.$TCL_MINOR_VERSION
-    if test -z "$tcl_vers_maj" -o "$tcl_vers_maj" -lt "$TCL_MAJOR_VERSION" \
+    if test -z "$tcl_vers_maj" \
+       || test "$tcl_vers_maj" -lt "$TCL_MAJOR_VERSION" \
        || test "$tcl_vers_maj" = "$TCL_MAJOR_VERSION" -a "$tcl_vers_min" -lt "$TCL_MINOR_VERSION" ; then
       for incdir in "$TCL_PREFIX/include/tcl$v" "$TCL_PREFIX/include" ; do
        if test -r "$incdir/tcl.h" -o -r "$incdir/tcl/tcl.h" ; then