add back as a comment the https download for cmocka to install-cmocka-linux.sh

This commit is contained in:
Nguyen Anh Quynh 2016-12-26 13:45:40 +08:00
parent e9b8968a23
commit 8a9a5432c3

View file

@ -1,6 +1,7 @@
#!/bin/sh
set -ex
mkdir cmocka
#wget https://cmocka.org/files/1.1/cmocka-1.1.0.tar.xz -O /tmp/cmocka-1.1.0.tar.xz
wget --no-check-certificate http://cmocka.org/files/1.1/cmocka-1.1.0.tar.xz -O /tmp/cmocka-1.1.0.tar.xz
tar -xf /tmp/cmocka-1.1.0.tar.xz -C /tmp
cd cmocka && cmake -DUNIT_TESTING=On /tmp/cmocka-1.1.0 && make && make test