From: Daniel P. Berrange Date: Mon, 7 Dec 2009 16:51:14 +0000 (+0000) Subject: Fix inverted conditional test in configure.ac check for yajl X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=6e547d54e526eb2f59b2d25824edb8f53fc4bdfd;p=libvirt.git Fix inverted conditional test in configure.ac check for yajl * configure.in: Fix inverted conditional test when yajl is not found --- 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