aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--configure.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6e0a007368..b33ce27aea 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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)"