From e13dc23cc0fd64c304c25a67d5fa516a77f9e8f1 Mon Sep 17 00:00:00 2001 From: Bernd Edlinger Date: Mon, 10 Sep 2018 14:18:23 +0200 Subject: [PATCH] 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) --- config | 1 + 1 file changed, 1 insertion(+) 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 ) -- 2.25.1