aboutsummaryrefslogtreecommitdiff
path: root/update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/update.sh b/update.sh
index 7e118bf..bc2d755 100755
--- a/update.sh
+++ b/update.sh
@@ -6,9 +6,13 @@ if [ -d openbsd ]; then
6git submodule init 6git submodule init
7git submodule update 7git submodule update
8else 8else
9git submodule add /cvs.b/libressl/openbsd 9if [ -z "$LIBRESSL_GIT" ]; then
10git submodule add https://github.com/libressl-portable/openbsd.git
11else
12git submodule add $LIBRESSL_GIT/openbsd
10git submodule update 13git submodule update
11fi 14fi
15fi
12 16
13libssl_src=openbsd/src/lib/libssl 17libssl_src=openbsd/src/lib/libssl
14libssl_regress=openbsd/src/regress/lib/libssl 18libssl_regress=openbsd/src/regress/lib/libssl