From 3b5fc9292b9edd41c51d8b40d213c5ddbcd9327e Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Mon, 7 Apr 2003 19:12:46 +0000 Subject: Oops, don't use a == when comparing strings in shell. 2003-04-07 Jeffrey Stedfast * configure.in: Oops, don't use a == when comparing strings in shell. svn path=/trunk/; revision=20724 --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'configure.in') diff --git a/configure.in b/configure.in index 85fb2f21c1..af55d832fb 100644 --- a/configure.in +++ b/configure.in @@ -602,7 +602,7 @@ if test "x${with_krb5}" != "xno"; then ]) if test "$ac_cv_lib_kerberos5" != "no"; then AC_DEFINE(HAVE_KRB5,1,[Define if you have Krb5]) - if test "$ac_cv_lib_kerberos5" == "$mitlibs"; then + if test "$ac_cv_lib_kerberos5" = "$mitlibs"; then AC_DEFINE(HAVE_MIT_KRB5,1,[Define if you have MIT Krb5]) KRB5_CFLAGS="-I$with_krb5/include" msg_krb5="yes (MIT)" -- cgit