Skip to content

Commit e314cdc

Browse files
committed
build cmake against system curl to get https support
1 parent eec332b commit e314cdc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

travis/build-wheels.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ echo 'Install cmake 3.9.0'
1414
wget --no-check-certificate https://cmake.org/files/v3.9/cmake-3.9.0.tar.gz
1515
tar -zxvf cmake-3.9.0.tar.gz
1616
cd cmake-3.9.0
17-
./bootstrap
17+
yum -y install curl-devel zlib-devel # need to build against system curl to get https support
18+
./bootstrap --system-curl
1819
make && make install
1920
cd ..
2021

0 commit comments

Comments
 (0)