mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-03-20 06:50:22 +03:00
Fix inverted conditional test in configure.ac check for yajl
* configure.in: Fix inverted conditional test when yajl is not found
This commit is contained in:
parent
9428f2ced6
commit
6e547d54e5
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user