From 259fa2798cc0a6ae97809bee52c74676bacc5e5d Mon Sep 17 00:00:00 2001
From: Erick Hitter <git-contrib@ethitter.com>
Date: Sat, 23 Feb 2019 12:58:28 -0800
Subject: [PATCH] Let OpenSSL sort out the config options

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

diff --git a/scripts/build.sh b/scripts/build.sh
index 98ed2b6..32dfae3 100644
--- a/scripts/build.sh
+++ b/scripts/build.sh
@@ -17,9 +17,9 @@ export OPENSSL_DIR
 
 # Dependency: OpenSSL
 echo "Checking out OpenSSL"
-git clone https://github.com/openssl/openssl.git -b "$OPENSSL_TAG" "$OPENSSL_DIR"
+git clone -q https://github.com/openssl/openssl.git -b "$OPENSSL_TAG" "$OPENSSL_DIR"
 cd "$OPENSSL_DIR" || exit
-./Configure
+./config
 
 # Dependency: ngx_brotli
 # Dependency: nginx-ct
-- 
GitLab