aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-04-08 03:12:46 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-04-08 03:12:46 +0800
commit3b5fc9292b9edd41c51d8b40d213c5ddbcd9327e (patch)
tree76706929feb9024d8dff48728daba1623932d7c3
parentcd84f6183343d2bb0d9c33f580fad11ee894b0b6 (diff)
downloadgsoc2013-evolution-3b5fc9292b9edd41c51d8b40d213c5ddbcd9327e.tar
gsoc2013-evolution-3b5fc9292b9edd41c51d8b40d213c5ddbcd9327e.tar.gz
gsoc2013-evolution-3b5fc9292b9edd41c51d8b40d213c5ddbcd9327e.tar.bz2
gsoc2013-evolution-3b5fc9292b9edd41c51d8b40d213c5ddbcd9327e.tar.lz
gsoc2013-evolution-3b5fc9292b9edd41c51d8b40d213c5ddbcd9327e.tar.xz
gsoc2013-evolution-3b5fc9292b9edd41c51d8b40d213c5ddbcd9327e.tar.zst
gsoc2013-evolution-3b5fc9292b9edd41c51d8b40d213c5ddbcd9327e.zip
Oops, don't use a == when comparing strings in shell.
2003-04-07 Jeffrey Stedfast <fejj@ximian.com> * configure.in: Oops, don't use a == when comparing strings in shell. svn path=/trunk/; revision=20724
-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)"