diff options
author | Craig Scott <craig.scott@crascit.com> | 2023-05-28 10:16:19 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2023-05-28 10:16:19 (GMT) |
commit | 8fdce89f70773d9114f5b064d2f1e26071da2625 (patch) | |
tree | e4f86f2fc896933119fd43c4521d7015edb9bae3 /Modules | |
parent | 1f98b65e3eeba32afd3c367e14be0a06b89bae9f (diff) | |
download | CMake-8fdce89f70773d9114f5b064d2f1e26071da2625.zip CMake-8fdce89f70773d9114f5b064d2f1e26071da2625.tar.gz CMake-8fdce89f70773d9114f5b064d2f1e26071da2625.tar.bz2 |
Help: Clarify default TLS_VERIFY behavior for git download method
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/ExternalProject.cmake | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Modules/ExternalProject.cmake b/Modules/ExternalProject.cmake index bac126c..e9e98a0 100644 --- a/Modules/ExternalProject.cmake +++ b/Modules/ExternalProject.cmake @@ -232,7 +232,12 @@ External Project Definition measure. .. versionchanged:: 3.6 - This option also applies to ``git clone`` invocations. + This option also applies to ``git clone`` invocations, although the + default behavior is different. If ``TLS_VERIFY`` is not given and + :variable:`CMAKE_TLS_VERIFY` is not set, the behavior will be + determined by git's defaults. Normally, the ``sslVerify`` git + config setting defaults to true, but the user may have overridden + this at a global level. ``TLS_CAINFO <file>`` Specify a custom certificate authority file to use if ``TLS_VERIFY`` |