diff options
author | Michael Osipov <1983-01-06@gmx.net> | 2015-04-30 15:52:23 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-04-30 18:36:27 +0200 |
commit | 4335b86a10f4a7abfefd8ca8d622f253dde62277 (patch) | |
tree | f4493eb69ca1b668e8a97a20c010795ca02b39a5 /acinclude.m4 | |
parent | 3f88d92e921270632242f11479ca9a576feccf9d (diff) | |
download | curl-4335b86a10f4a7abfefd8ca8d622f253dde62277.tar.gz |
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.
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
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 ]) |