提交 6e547d54 编写于 作者: D Daniel P. Berrange

Fix inverted conditional test in configure.ac check for yajl

* configure.in: Fix inverted conditional test when yajl is not
  found
上级 9428f2ce
......@@ -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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册