From 021ec86405672b14cb27bd2dd5daf91ccae48b7c Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Mon, 7 Feb 2000 16:25:47 +0000 Subject: [PATCH] * aclocal.m4 (AC_KRB5_TCL_FIND_CONFIG): Change test syntax a little to keep bash happy git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12017 dc483132-0cff-0310-8789-dd5450dbe970 --- src/ChangeLog | 5 +++++ src/aclocal.m4 | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) 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 + + * aclocal.m4 (AC_KRB5_TCL_FIND_CONFIG): Change test syntax a + little to keep bash happy. + 2000-02-04 Tom Yu * 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 -- 2.26.2