Merge "BuildSystem: Avoid == for comparison in ./configure." into 13

This commit is contained in:
Jenkins2
2018-03-05 12:36:15 -06:00
committed by Gerrit Code Review
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@@ -13797,7 +13797,7 @@ fi
if test "x$JANSSON_LIB" == "x"; then
if test "${PBX_JANSSON}" != 1; then
as_fn_error $? "*** JSON support not found (this typically means the libjansson development package is missing)" "$LINENO" 5
fi

View File

@@ -622,7 +622,7 @@ AC_SUBST(UUID_LIB)
# Find required JSON support.
AST_EXT_LIB_CHECK([JANSSON], [jansson], [json_dumps], [jansson.h])
if test "x$JANSSON_LIB" == "x"; then
if test "${PBX_JANSSON}" != 1; then
AC_MSG_ERROR([*** JSON support not found (this typically means the libjansson development package is missing)])
fi