Commit 4335b86a authored by Michael Osipov's avatar Michael Osipov Committed by Daniel Stenberg
Browse files

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.
parent 3f88d92e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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
])