From 87f533c9f622d5f44170fc2aed0d341187d10878 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 27 May 2019 19:16:14 +0200 Subject: Configure: make 'enable-buildtest-c++' work (not be a regexp) OpenSSL 1.1.1's Configure treats the strings in @disablables as regexps, which means that the 'buildtest-c++' option needs a bit of escaping to be interpreted as intended. Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/9016) --- Configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configure b/Configure index b220337964..254b04c95d 100755 --- a/Configure +++ b/Configure @@ -332,7 +332,7 @@ my @disablables = ( "autoload-config", "bf", "blake2", - "buildtest-c++", + "buildtest-c\\+\\+", "camellia", "capieng", "cast", -- cgit v1.2.3