summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorAlexander Traud <pabstraud@compuserve.com>2018-03-02 12:12:17 +0100
committerAlexander Traud <pabstraud@compuserve.com>2018-03-02 12:12:17 +0100
commita9c02e484a69107b69b3a746c04c8f3799d48eb9 (patch)
tree3c2ec7a2901c0aa5c411c5249daa6d3e91d4570a /configure
parente58ae393b1f83981178c7ddedf4cfb40e6ca5f31 (diff)
BuildSystem: Avoid == for comparison in ./configure.
ASTERISK-27709 Reported by: John Nemeth Change-Id: I11b1ae8fd404c04066f1458f5d71f9536359d58d
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 2849fe591..15db8bff9 100755
--- a/configure
+++ b/configure
@@ -14105,7 +14105,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