summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>1997-10-22 19:56:16 +0000
committerEzra Peisach <epeisach@mit.edu>1997-10-22 19:56:16 +0000
commit65dda04e75456be38841a68f1f8b4e2cd9a29524 (patch)
treee3575f6213f8bf8379d88151c05fd99b2ec9bd45 /src
parent3aecb5700faadda1f91d66ff9ee05e5c401bf982 (diff)
downloadkrb5-65dda04e75456be38841a68f1f8b4e2cd9a29524.tar.gz
krb5-65dda04e75456be38841a68f1f8b4e2cd9a29524.tar.xz
krb5-65dda04e75456be38841a68f1f8b4e2cd9a29524.zip
Fix simple shell test for tcl tests
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10245 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/aclocal.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/src/aclocal.m4 b/src/aclocal.m4
index d0aa71ad8..525ce9157 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -921,24 +921,24 @@ if test "$TCL_WITH" != no ; then
AC_CHECK_HEADER(tcl/tcl.h,AC_DEFINE(HAVE_TCL_TCL_H) tcl_header=yes)
fi
- if test $tcl_header=yes; then
+ if test $tcl_header = yes ; then
tcl_lib=no
AC_CHECK_LIB(tcl7.6, Tcl_CreateCommand,
TCL_LIBS="$TCL_LIBS -ltcl7.6 -lm $DL_LIB"
tcl_lib=yes,,-lm $DL_LIB)
- if test $tcl_lib=no; then
+ if test $tcl_lib = no; then
AC_CHECK_LIB(tcl7.5, Tcl_CreateCommand,
TCL_LIBS="$TCL_LIBS -ltcl7.5 -lm $DL_LIB"
tcl_lib=yes,,-lm $DL_LIB)
fi
- if test $tcl_lib=no; then
+ if test $tcl_lib = no ; then
AC_CHECK_LIB(tcl, Tcl_CreateCommand,
TCL_LIBS="$TCL_LIBS -ltcl -lm $DL_LIB"
tcl_lib=yes,,-lm $DL_LIB)
fi
- if test $tcl_lib=no; then
+ if test $tcl_lib = no ; then
AC_MSG_WARN("tcl.h found but not library")
fi
else