From 3496a1ae08156c3c03dae547708e29ce341a5267 Mon Sep 17 00:00:00 2001
From: Erick Hitter <git-contrib@ethitter.com>
Date: Sat, 23 Feb 2019 16:44:19 -0800
Subject: [PATCH] The build requires the right libs in the right place

---
 scripts/build.sh | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/scripts/build.sh b/scripts/build.sh
index 370fe4c..f5a4c13 100644
--- a/scripts/build.sh
+++ b/scripts/build.sh
@@ -37,7 +37,9 @@ export NGINX_CT_DIR
 echo "DEPENDENCY: OpenSSL"
 git clone -q --recursive --depth 1 https://github.com/openssl/openssl.git -b "$OPENSSL_TAG" "$OPENSSL_DIR"
 cd "$OPENSSL_DIR" || exit
-./config no-shared
+./config --prefix=/usr
+make -j"$(nproc)"
+make install
 
 # Dependency: ngx_brotli (no tagged releases)
 echo ""
-- 
GitLab