From: Bernd Edlinger Date: Mon, 10 Sep 2018 12:18:23 +0000 (+0200) Subject: Make the config script fail with an error code if Configure failed X-Git-Tag: OpenSSL_1_1_0j~41 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e13dc23cc0fd64c304c25a67d5fa516a77f9e8f1;p=oweals%2Fopenssl.git Make the config script fail with an error code if Configure failed Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/7166) --- diff --git a/config b/config index 35e849a958..19c0071f4a 100755 --- a/config +++ b/config @@ -929,5 +929,6 @@ if [ $? = "0" ]; then fi else echo "This system ($OUT) is not supported. See file INSTALL for details." + exit 1 fi )