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_0_2q~24 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5a6fbf616e1da3ac8c8bc6a30dbcd9844f6726c7;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) (cherry picked from commit e13dc23cc0fd64c304c25a67d5fa516a77f9e8f1) --- diff --git a/config b/config index 21534e00ba..6214c4b1df 100755 --- a/config +++ b/config @@ -992,5 +992,6 @@ if [ $? = "0" ]; then fi else echo "This system ($OUT) is not supported. See file INSTALL for details." + exit 1 fi )