Merge pull request #236 from nolta/cmake-enable-ssl

cmake: enable ssl, for https downloads
This commit is contained in:
Todd Gamblin 2015-12-17 23:03:31 -08:00
commit 3198522a7f

View File

@ -43,6 +43,7 @@ class Cmake(Package):
def install(self, spec, prefix): def install(self, spec, prefix):
configure('--prefix=' + prefix, configure('--prefix=' + prefix,
'--parallel=' + str(make_jobs)) '--parallel=' + str(make_jobs),
'--', '-DCMAKE_USE_OPENSSL=ON')
make() make()
make('install') make('install')