From: Nicolas Williams Date: Sun, 19 Jul 2015 02:12:08 +0000 (-0500) Subject: Use =, not ==, for shell tests X-Git-Tag: jq-1.5rc2~19 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=812703139c5c1836a97456eb9a0b84f49b8cc850;p=jq Use =, not ==, for shell tests --- diff --git a/configure.ac b/configure.ac index beccf1e..19f087a 100644 --- a/configure.ac +++ b/configure.ac @@ -55,7 +55,7 @@ AC_ARG_WITH([oniguruma], [ONIGURUMAPATHSET=1], [ONIGURUMAPATHSET=0]) -if test $ONIGURUMAPATHSET == 1; then +if test $ONIGURUMAPATHSET = 1; then CFLAGS="$CFLAGS -I${with_oniguruma}/include" LDFLAGS="$LDFLAGS -L${with_oniguruma}/lib" fi