diff options
-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 |