add LIBRESSL_GIT environment variable
Allows for eventual public github default, which can be easily overridden by developers.
This commit is contained in:
parent
e01095e615
commit
b3543f9c59
@ -6,9 +6,13 @@ if [ -d openbsd ]; then
|
|||||||
git submodule init
|
git submodule init
|
||||||
git submodule update
|
git submodule update
|
||||||
else
|
else
|
||||||
git submodule add /cvs.b/libressl/openbsd
|
if [ -z "$LIBRESSL_GIT" ]; then
|
||||||
|
git submodule add https://github.com/libressl-portable/openbsd.git
|
||||||
|
else
|
||||||
|
git submodule add $LIBRESSL_GIT/openbsd
|
||||||
git submodule update
|
git submodule update
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
libssl_src=openbsd/src/lib/libssl
|
libssl_src=openbsd/src/lib/libssl
|
||||||
libssl_regress=openbsd/src/regress/lib/libssl
|
libssl_regress=openbsd/src/regress/lib/libssl
|
||||||
|
Loading…
Reference in New Issue
Block a user