summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2019-05-27 19:16:14 +0200
committerRichard Levitte <levitte@openssl.org>2019-05-27 19:16:14 +0200
commit87f533c9f622d5f44170fc2aed0d341187d10878 (patch)
tree5c0403136df73a41558038b879183b214aa2b664 /Configure
parentaa085f8c10f8d79f80a3bae02936492604b0492d (diff)
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 <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9016)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 1 insertions, 1 deletions
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",