summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2024-12-30 15:24:08 +0100
committerJunio C Hamano <gitster@pobox.com>2024-12-30 15:50:49 +0100
commit12068bd4de03c7769f50cd8321f792477692d0ea (patch)
tree617a174a0cd90a42998f9e3f7a1d32ae407e5235
parentmeson: simplify conditions for HTTPS and SHA1 dependencies (diff)
downloadgit-12068bd4de03c7769f50cd8321f792477692d0ea.tar.xz
git-12068bd4de03c7769f50cd8321f792477692d0ea.zip
meson: add missing dots for build options
Most of our Meson build options end with a trailing dot, but those for our SHA1 and SHA256 backends don't. Add it. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--meson_options.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt
index a7f308d217..d8d283982b 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -50,9 +50,9 @@ option('regex', type: 'feature', value: 'auto',
option('https_backend', type: 'combo', value: 'auto', choices: ['auto', 'openssl', 'CommonCrypto', 'none'],
description: 'The HTTPS backend to use when connecting to remotes.')
option('sha1_backend', type: 'combo', choices: ['openssl', 'block', 'sha1dc', 'CommonCrypto'], value: 'sha1dc',
- description: 'The backend used for hashing objects with the SHA1 object format')
+ description: 'The backend used for hashing objects with the SHA1 object format.')
option('sha256_backend', type: 'combo', choices: ['openssl', 'nettle', 'gcrypt', 'block'], value: 'block',
- description: 'The backend used for hashing objects with the SHA256 object format')
+ description: 'The backend used for hashing objects with the SHA256 object format.')
# Build tweaks.
option('macos_use_homebrew_gettext', type: 'boolean', value: true,