From: Michael Osipov <1983-01-06@gmx.net> Date: Thu, 30 Apr 2015 13:52:23 +0000 (+0200) Subject: acinclude.m4: fix test for default CA cert bundle/path X-Git-Tag: curl-7_43_0~190 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4335b86a10f4a7abfefd8ca8d622f253dde62277;p=curl acinclude.m4: fix test for default CA cert bundle/path test(1) on HP-UX requires a single equals sign and fails with two. Let's use one and make every OS happy. --- diff --git a/acinclude.m4 b/acinclude.m4 index ca0186984..b394b901d 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -2676,7 +2676,7 @@ AC_HELP_STRING([--without-ca-path], [Don't use a default CA path]), AC_DEFINE_UNQUOTED(CURL_CA_PATH, "$capath", [Location of default ca path]) AC_MSG_RESULT([$capath (capath)]) fi - if test "x$ca" == "xno" && test "x$capath" == "xno"; then + if test "x$ca" = "xno" && test "x$capath" = "xno"; then AC_MSG_RESULT([no]) fi ])