mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-17 21:48:19 +00:00
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.
This commit is contained in:
parent
60fb40676a
commit
0da30b7857
|
@ -75,16 +75,11 @@ cd compile_libs || exit 1
|
||||||
|
|
||||||
# start with openssl
|
# start with openssl
|
||||||
(
|
(
|
||||||
_WAS_THERE_SSLFILE=1
|
|
||||||
if [ ! -d "openssl" ]; then
|
if [ ! -d "openssl" ]; then
|
||||||
git clone https://github.com/openssl/openssl openssl
|
git clone https://github.com/openssl/openssl openssl
|
||||||
_WAS_THERE_SSLFILE=0
|
|
||||||
fi
|
fi
|
||||||
(
|
(
|
||||||
cd openssl || exit 1
|
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
|
cp "${CURDIR}"/scripts/compile_libs/make_lib_openssl.sh make_lib_openssl.sh
|
||||||
./make_lib_openssl.sh "$_ANDROID_ABI_LEVEL" "$OS_NAME" "$COMPILEFLAGS" "$LINKFLAGS"
|
./make_lib_openssl.sh "$_ANDROID_ABI_LEVEL" "$OS_NAME" "$COMPILEFLAGS" "$LINKFLAGS"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue