From 6f7cbab6b99f690588b80cfd4b7949ad392a5243 Mon Sep 17 00:00:00 2001 From: Karolin Seeger Date: Tue, 27 Oct 2009 16:29:20 +0100 Subject: [PATCH] s3:configure: Fix typo in libtalloc check. Fix bug #6849. Thanks to Mike Frysinger for reporting and providing the patch! Karolin (cherry picked from commit 5897c3de95b8f9fad4e136d2fc1a390fb366b7b9) --- source3/configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/configure.in b/source3/configure.in index 30d7dd1f3e5..ca86a9ed5a6 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -31,7 +31,7 @@ if test "x$enable_external_libtalloc" != xno then PKG_CHECK_MODULES(TALLOC, talloc >= 1.3.0, [ enable_external_libtalloc=yes ], - [ if x$enable_external_libtalloc = xyes; then + [ if test "x$enable_external_libtalloc" = xyes; then AC_MSG_ERROR([Unable to find libtalloc]) else enable_external_libtalloc=no -- 2.11.4.GIT