use https instead of git for github.com

This commit is contained in:
Godmar Back 2018-04-13 15:10:01 -04:00
parent aa09577e9f
commit d4b1165408

View File

@ -5,14 +5,14 @@
# #
BASE=`pwd` BASE=`pwd`
test -d ${BASE}/deps || mkdir ${BASE}/deps test -d ${BASE}/deps || mkdir ${BASE}/deps
git clone git@github.com:akheron/jansson.git git clone https://github.com/akheron/jansson.git
(cd jansson; (cd jansson;
autoreconf -fi; autoreconf -fi;
./configure --prefix=${BASE}/deps; ./configure --prefix=${BASE}/deps;
make install make install
) )
git clone git@github.com:benmcollins/libjwt.git git clone https://git@github.com/benmcollins/libjwt.git
(cd libjwt; (cd libjwt;
autoreconf -fi; autoreconf -fi;
env PKG_CONFIG_PATH=../deps/lib/pkgconfig:${PKG_CONFIG_PATH} ./configure --prefix=${BASE}/deps; env PKG_CONFIG_PATH=../deps/lib/pkgconfig:${PKG_CONFIG_PATH} ./configure --prefix=${BASE}/deps;