diff options
author | Bob Beck <beck@rocinante.obtuse.com> | 2014-07-10 08:05:45 -0600 |
---|---|---|
committer | Bob Beck <beck@rocinante.obtuse.com> | 2014-07-10 08:05:45 -0600 |
commit | b3543f9c59ad616148915e857184e914f06c2dbc (patch) | |
tree | b5d582c3874c99582d306f6b49c334c995dee46f /update.sh | |
parent | e01095e6157fac15f2902c5e73a9c43b3973700b (diff) | |
download | portable-b3543f9c59ad616148915e857184e914f06c2dbc.tar.gz portable-b3543f9c59ad616148915e857184e914f06c2dbc.tar.bz2 portable-b3543f9c59ad616148915e857184e914f06c2dbc.zip |
add LIBRESSL_GIT environment variable
Allows for eventual public github default, which can be easily
overridden by developers.
Diffstat (limited to 'update.sh')
-rwxr-xr-x | update.sh | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -6,9 +6,13 @@ if [ -d openbsd ]; then | |||
6 | git submodule init | 6 | git submodule init |
7 | git submodule update | 7 | git submodule update |
8 | else | 8 | else |
9 | git submodule add /cvs.b/libressl/openbsd | 9 | if [ -z "$LIBRESSL_GIT" ]; then |
10 | git submodule add https://github.com/libressl-portable/openbsd.git | ||
11 | else | ||
12 | git submodule add $LIBRESSL_GIT/openbsd | ||
10 | git submodule update | 13 | git submodule update |
11 | fi | 14 | fi |
15 | fi | ||
12 | 16 | ||
13 | libssl_src=openbsd/src/lib/libssl | 17 | libssl_src=openbsd/src/lib/libssl |
14 | libssl_regress=openbsd/src/regress/lib/libssl | 18 | libssl_regress=openbsd/src/regress/lib/libssl |