From: Richard Levitte Date: Mon, 27 May 2019 17:16:14 +0000 (+0200) Subject: Configure: make 'enable-buildtest-c++' work (not be a regexp) X-Git-Tag: OpenSSL_1_1_1c~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=87f533c9f622d5f44170fc2aed0d341187d10878;p=openssl 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) --- 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",