summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/aclocal.m43
2 files changed, 7 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7897e2856..d73ba4454 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -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.
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index dc4b41389..d2e612274 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -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