summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-08-07 12:38:16 +0200
committerRichard Levitte <levitte@openssl.org>2018-08-07 17:19:38 +0200
commit4e360445473c3da938703a8142a36cf6ee86a191 (patch)
treef7f249998e7926f138df046e61c88e6da3d5b6d9 /Configure
parent2b988423252232b2202f32a4d702f1cc24de5369 (diff)
Check early that the config target exists and isn't a template
Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/6885)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure5
1 files changed, 3 insertions, 2 deletions
diff --git a/Configure b/Configure
index 9f728b9242..059271275d 100755
--- a/Configure
+++ b/Configure
@@ -1034,11 +1034,12 @@ if ($d) {
$target = $t;
}
}
+
+&usage if !$table{$target} || $table{$target}->{template};
+
$config{target} = $target;
my %target = resolve_config($target);
-&usage if (!%target || $target{template});
-
foreach (keys %target_attr_translate) {
$target{$target_attr_translate{$_}} = $target{$_}
if $target{$_};