From 4335b86a10f4a7abfefd8ca8d622f253dde62277 Mon Sep 17 00:00:00 2001 From: Michael Osipov <1983-01-06@gmx.net> Date: Thu, 30 Apr 2015 15:52:23 +0200 Subject: [PATCH] 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. --- acinclude.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ])