From: Ian Spence Date: Tue, 24 Sep 2024 17:48:59 +0000 (-0700) Subject: configure: improve help string for some options X-Git-Tag: curl-8_11_0~346 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=635253caa0c2d0754e1934a24f36089dc2cebcb3;p=thirdparty%2Fcurl.git configure: improve help string for some options Closes #15033 --- diff --git a/acinclude.m4 b/acinclude.m4 index 64d916c244..936749dd54 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1197,7 +1197,7 @@ AC_DEFUN([CURL_CHECK_CA_BUNDLE], [ AC_ARG_WITH(ca-bundle, AS_HELP_STRING([--with-ca-bundle=FILE], - [Path to a file containing CA certificates (example: /etc/ca-bundle.crt)]) + [Absolute path to a file containing CA certificates (example: /etc/ca-bundle.crt)]) AS_HELP_STRING([--without-ca-bundle], [Don't use a default CA bundle]), [ want_ca="$withval" @@ -1208,7 +1208,7 @@ AS_HELP_STRING([--without-ca-bundle], [Don't use a default CA bundle]), [ want_ca="unset" ]) AC_ARG_WITH(ca-path, AS_HELP_STRING([--with-ca-path=DIRECTORY], - [Path to a directory containing CA certificates stored individually, with \ + [Absolute path to a directory containing CA certificates stored individually, with \ their filenames in a hash format. This option can be used with the OpenSSL, \ GnuTLS, mbedTLS and wolfSSL backends. Refer to OpenSSL c_rehash for details. \ (example: /etc/certificates)]) @@ -1348,7 +1348,7 @@ AC_DEFUN([CURL_CHECK_CA_EMBED], [ AC_ARG_WITH(ca-embed, AS_HELP_STRING([--with-ca-embed=FILE], - [Path to a file containing CA certificates (example: /etc/ca-bundle.crt)]) + [Absolute path to a file containing CA certificates (example: /etc/ca-bundle.crt)]) AS_HELP_STRING([--without-ca-embed], [Don't embed a default CA bundle]), [ want_ca_embed="$withval"