Skip to content

Commit 12068bd

Browse files
pks-tgitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 6d8aa2a commit 12068bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

meson_options.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ option('regex', type: 'feature', value: 'auto',
5050
option('https_backend', type: 'combo', value: 'auto', choices: ['auto', 'openssl', 'CommonCrypto', 'none'],
5151
description: 'The HTTPS backend to use when connecting to remotes.')
5252
option('sha1_backend', type: 'combo', choices: ['openssl', 'block', 'sha1dc', 'CommonCrypto'], value: 'sha1dc',
53-
description: 'The backend used for hashing objects with the SHA1 object format')
53+
description: 'The backend used for hashing objects with the SHA1 object format.')
5454
option('sha256_backend', type: 'combo', choices: ['openssl', 'nettle', 'gcrypt', 'block'], value: 'block',
55-
description: 'The backend used for hashing objects with the SHA256 object format')
55+
description: 'The backend used for hashing objects with the SHA256 object format.')
5656

5757
# Build tweaks.
5858
option('macos_use_homebrew_gettext', type: 'boolean', value: true,

0 commit comments

Comments
 (0)