Re: [cmake-developers] [PATCH v2] ExternalProject: Allow TLS_VERIFY for git clones

2016-04-06 Thread Brad King
On 04/01/2016 01:18 PM, Ben Boeckel wrote: > On Fri, Apr 01, 2016 at 15:39:26 +0100, Samir Benmendil wrote: >> Use the git config `http.sslVerify=false` to disable strict ssl for git >> commands. > > I've pushed this into next for testing. FYI, the patch is now in 'master'. However, I since

Re: [cmake-developers] [PATCH v2] ExternalProject: Allow TLS_VERIFY for git clones

2016-04-01 Thread Ben Boeckel
On Fri, Apr 01, 2016 at 15:39:26 +0100, Samir Benmendil wrote: > Use the git config `http.sslVerify=false` to disable strict ssl for git > commands. > --- > Changes in v2: > - git_options is now a list Thanks. I've pushed this into next for testing. --Ben -- Powered by www.kitware.com

[cmake-developers] [PATCH v2] ExternalProject: Allow TLS_VERIFY for git clones

2016-04-01 Thread Samir Benmendil
Use the git config `http.sslVerify=false` to disable strict ssl for git commands. --- Changes in v2: - git_options is now a list Modules/ExternalProject.cmake | 23 +-- 1 file changed, 17 insertions(+), 6 deletions(-) diff --git a/Modules/ExternalProject.cmake