From fe0c07e6563e382a530a494281fe46d3f4c22077 Mon Sep 17 00:00:00 2001 From: Alec Muffett Date: Thu, 23 Jul 2020 19:26:37 +0000 Subject: [PATCH] commit: final bits --- opt.d/build-freebsd-12.1.sh | 2 +- opt.d/build-macos-mojave.sh | 2 +- opt.d/build-raspbian-stretch.sh | 2 +- opt.d/build-ubuntu-18.04.sh | 8 ++++++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/opt.d/build-freebsd-12.1.sh b/opt.d/build-freebsd-12.1.sh index d01571f..d0f4a88 100755 --- a/opt.d/build-freebsd-12.1.sh +++ b/opt.d/build-freebsd-12.1.sh @@ -3,7 +3,7 @@ # platform-independent lib.sh cd `dirname $0` || exit 1 opt_dir=`pwd` -. lib.sh || exit 1 +. ./lib.sh || exit 1 # FreeBSD users: note: you may want to install libzstd to make # compression go faster; apparently the way that you do this is to do diff --git a/opt.d/build-macos-mojave.sh b/opt.d/build-macos-mojave.sh index dc68f8d..43bb3bd 100755 --- a/opt.d/build-macos-mojave.sh +++ b/opt.d/build-macos-mojave.sh @@ -3,7 +3,7 @@ # platform-independent lib.sh cd `dirname $0` || exit 1 opt_dir=`pwd` -. lib.sh || exit 1 +. ./lib.sh || exit 1 # platform dependencies shared_deps=" diff --git a/opt.d/build-raspbian-stretch.sh b/opt.d/build-raspbian-stretch.sh index d97c73f..2f4d811 100755 --- a/opt.d/build-raspbian-stretch.sh +++ b/opt.d/build-raspbian-stretch.sh @@ -3,7 +3,7 @@ # platform-independent lib.sh cd `dirname $0` || exit 1 opt_dir=`pwd` -. lib.sh || exit 1 +. ./lib.sh || exit 1 # platform dependencies shared_deps=" diff --git a/opt.d/build-ubuntu-18.04.sh b/opt.d/build-ubuntu-18.04.sh index e3aa6e3..fce38c8 100755 --- a/opt.d/build-ubuntu-18.04.sh +++ b/opt.d/build-ubuntu-18.04.sh @@ -3,18 +3,22 @@ # platform-independent lib.sh cd `dirname $0` || exit 1 opt_dir=`pwd` -. lib.sh || exit 1 +. ./lib.sh || exit 1 # platform dependencies shared_deps=" +build-essential +curl dirmngr libevent-dev libpcre3-dev libssl-dev libssl1.1 +make +perl zlib1g-dev " -sudo aptitude install -y $shared_deps || exit 1 +sudo apt install -y $shared_deps || exit 1 # build openresty SetupOpenRestyVars || exit 1