From 2148236b164e6689b1f55a1d1d5b671406438382 Mon Sep 17 00:00:00 2001 From: Felix Schulze Date: Wed, 27 Nov 2019 15:54:05 +0100 Subject: [PATCH] Remove test while building openssl Fixes fork() issue --- build-libssl.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-libssl.sh b/build-libssl.sh index b214d40..7602fa7 100755 --- a/build-libssl.sh +++ b/build-libssl.sh @@ -138,9 +138,9 @@ run_configure() echo " Configure..." set +e if [ "${LOG_VERBOSE}" == "verbose" ]; then - ./Configure ${LOCAL_CONFIG_OPTIONS} | tee "${LOG}" + ./Configure ${LOCAL_CONFIG_OPTIONS} no-tests | tee "${LOG}" else - (./Configure ${LOCAL_CONFIG_OPTIONS} > "${LOG}" 2>&1) & spinner + (./Configure ${LOCAL_CONFIG_OPTIONS} no-tests > "${LOG}" 2>&1) & spinner fi # Check for error status