From 6e547d54e526eb2f59b2d25824edb8f53fc4bdfd Mon Sep 17 00:00:00 2001 From: "Daniel P. Berrange" Date: Mon, 7 Dec 2009 16:51:14 +0000 Subject: [PATCH] Fix inverted conditional test in configure.ac check for yajl * configure.in: Fix inverted conditional test when yajl is not found --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index 41f50fcff8..68947dd8bf 100644 --- a/configure.in +++ b/configure.in @@ -664,7 +664,7 @@ if test "x$with_yajl" != "xno"; then CPPFLAGS="$CPPFLAGS $YAJL_CFLAGS" LDFLAGS="$LDFLAGS $YAJL_LIBS" AC_CHECK_HEADER([yajl/yajl_common.h],[],[ - if test "x$with_yajl" != "xcheck" ; then + if test "x$with_yajl" = "xcheck" ; then with_yajl=no else fail=1 -- 2.47.2