From 0da30b78577d46e7628d503f3c87eda9479ba1dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20M=C3=BCller?= Date: Sat, 11 May 2024 17:44:57 +0200 Subject: [PATCH] Remove obsolete `autogen.sh` usage for OpenSSL build The OpenSSL project does not contain an `autogen.sh` file anymore, which was causing an error message when building the libraries. --- scripts/compile_libs/gen_libs.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scripts/compile_libs/gen_libs.sh b/scripts/compile_libs/gen_libs.sh index 9b5408909..bf61b6f13 100755 --- a/scripts/compile_libs/gen_libs.sh +++ b/scripts/compile_libs/gen_libs.sh @@ -75,16 +75,11 @@ cd compile_libs || exit 1 # start with openssl ( - _WAS_THERE_SSLFILE=1 if [ ! -d "openssl" ]; then git clone https://github.com/openssl/openssl openssl - _WAS_THERE_SSLFILE=0 fi ( cd openssl || exit 1 - if [[ "$_WAS_THERE_SSLFILE" == 0 ]]; then - ./autogen.sh - fi cp "${CURDIR}"/scripts/compile_libs/make_lib_openssl.sh make_lib_openssl.sh ./make_lib_openssl.sh "$_ANDROID_ABI_LEVEL" "$OS_NAME" "$COMPILEFLAGS" "$LINKFLAGS" )