summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-09-06 10:22:03 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:52:37 -0500
commitbf43c1ae13154839e49eea7602dac6701669ba26 (patch)
tree3bc936ae0233c4763c56627d6e5a49702062040f
parentb887c41253ec67288333fd20f282c89b139789a3 (diff)
downloadsamba-bf43c1ae13154839e49eea7602dac6701669ba26.tar.gz
samba-bf43c1ae13154839e49eea7602dac6701669ba26.tar.bz2
samba-bf43c1ae13154839e49eea7602dac6701669ba26.zip
r2233: fixed 3 places where == is mistakenly used instead of = in bourne
shell script statements in configure. (This used to be commit 8470968cc6884605cdf2587a2c7f9ecf7b46ded6)
-rw-r--r--source3/configure.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 8984bb1be3..6a85e9d86b 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -716,7 +716,7 @@ if test x$enable_cups != xno; then
CFLAGS="$CFLAGS `$CUPS_CONFIG --cflags`"
LDFLAGS="$LDFLAGS `$CUPS_CONFIG --ldflags`"
PRINT_LIBS="$PRINT_LIBS `$CUPS_CONFIG --libs`"
- elif test x"$enable_cups" == x"yes"; then
+ elif test x"$enable_cups" = x"yes"; then
AC_MSG_ERROR(Cups support required but cups-config not located. Make sure cups-devel related files are installed.)
fi
fi
@@ -2421,7 +2421,7 @@ if test x"$samba_cv_WITH_AFS" != x"no" ||
fi
fi
-if test x"$samba_cv_WITH_FAKE_KASERVER" != x"no" && test x"$have_afs_headers" == x"yes"; then
+if test x"$samba_cv_WITH_FAKE_KASERVER" != x"no" && test x"$have_afs_headers" = x"yes"; then
AC_DEFINE(WITH_FAKE_KASERVER,1,[Whether to include AFS fake-kaserver support])
fi
@@ -2443,7 +2443,7 @@ AC_ARG_WITH(vfs-afsacl,
AC_MSG_RESULT(no)
)
-if test x"$samba_cv_WITH_VFS_AFSACL" == x"yes"; then
+if test x"$samba_cv_WITH_VFS_AFSACL" = x"yes"; then
default_shared_modules="$default_shared_modules vfs_afsacl"
fi