From 8f5ab873433c4c58174ce5c6316470cc3f8af54f Mon Sep 17 00:00:00 2001 From: hbeni Date: Mon, 12 Jul 2021 07:34:20 +0200 Subject: [PATCH] Plugin: Makefile prints skipped openssl build now, when SSLFLAGS not set --- client/mumble-plugin/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/mumble-plugin/Makefile b/client/mumble-plugin/Makefile index 1d6bdcf9..34b971ae 100644 --- a/client/mumble-plugin/Makefile +++ b/client/mumble-plugin/Makefile @@ -126,6 +126,8 @@ ifdef SSLFLAGS git submodule update cd lib/openssl/ && git reset --hard cd lib/openssl/ && ./Configure mingw64 -static no-pinshared no-weak-ssl-ciphers no-ssl2 no-ssl3 no-idea no-dtls1 --cross-compile-prefix=x86_64-w64-mingw32- && make clean && make -j4 +else + @echo "Skipping building OpenSSL" endif openssl-win32: @@ -135,6 +137,8 @@ ifdef SSLFLAGS git submodule update cd lib/openssl/ && git reset --hard cd lib/openssl/ && ./Configure mingw -static no-pinshared no-weak-ssl-ciphers no-ssl2 no-ssl3 no-idea no-dtls1 --cross-compile-prefix=i686-w64-mingw32- && make clean && make -j4 +else + @echo "Skipping building OpenSSL" endif