From: Richard Levitte Date: Tue, 27 Feb 2018 20:01:59 +0000 (+0100) Subject: configdata.pm: ensure $prefix is defined X-Git-Tag: OpenSSL_1_1_1-pre3~223 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=b700bc59669939a9285255293e1bb70a5a35f736;p=oweals%2Fopenssl.git configdata.pm: ensure $prefix is defined Fixes #5471 Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/5472) --- diff --git a/Configure b/Configure index 3c40a0e25e..d78066b25b 100755 --- a/Configure +++ b/Configure @@ -2444,6 +2444,7 @@ _____ my $prefix = ''; $prefix = $config{cross_compile_prefix} if grep { $var eq $_ } @user_crossable; + $prefix //= ''; print ' ',$var,' ' x (16 - length $var),'= ', (ref $config{$makevars{$var}} eq 'ARRAY' ? join(' ', @{$config{$makevars{$var}}})