Fix simple shell test for tcl tests
authorEzra Peisach <epeisach@mit.edu>
Wed, 22 Oct 1997 19:56:16 +0000 (19:56 +0000)
committerEzra Peisach <epeisach@mit.edu>
Wed, 22 Oct 1997 19:56:16 +0000 (19:56 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10245 dc483132-0cff-0310-8789-dd5450dbe970

src/aclocal.m4

index d0aa71ad87458597ab99a58958d2712d944f62d1..525ce915725c0d01b5c65a29ebeba4b2d1cd4b02 100644 (file)
@@ -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