]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
configure: improve help string for some options
authorIan Spence <ian@ecnepsnai.com>
Tue, 24 Sep 2024 17:48:59 +0000 (10:48 -0700)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 24 Sep 2024 21:52:49 +0000 (23:52 +0200)
Closes #15033

acinclude.m4

index 64d916c244257d7d5a2d0c4c20d358d0892014f7..936749dd54df5fe89dbdc0b4b6486d24eecafe81 100644 (file)
@@ -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"