diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2003-04-07 Jeffrey Stedfast <fejj@ximian.com> + + * configure.in: Oops, don't use a == when comparing strings in + shell. + 2003-04-07 Chris Toshok <toshok@ximian.com> * tools/Makefile.am (privlibexec_PROGRAMS): remove 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)" |