aboutsummaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-28 01:13:17 +0100
committerRichard Levitte <levitte@openssl.org>2016-03-01 06:39:16 +0100
commit2e0956ba6dd04ae80d54eb4e03bed5a59e2a94c7 (patch)
tree8ff7361029220fc0d80a5ee2269941fadeb9eea3 /Configure
parentedae9834b6eeeb7af8839187a6de82131991ec4b (diff)
downloadopenssl-2e0956ba6dd04ae80d54eb4e03bed5a59e2a94c7.zip
openssl-2e0956ba6dd04ae80d54eb4e03bed5a59e2a94c7.tar.gz
openssl-2e0956ba6dd04ae80d54eb4e03bed5a59e2a94c7.tar.bz2
Unified - have configdata.pm depend on a few more things
Reviewed-by: Andy Polyakov <appro@openssl.org>
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure3
1 files changed, 3 insertions, 0 deletions
diff --git a/Configure b/Configure
index 274712e..080bc06 100755
--- a/Configure
+++ b/Configure
@@ -1266,6 +1266,8 @@ if ($builder eq "unified") {
if (-f catfile($srcdir, "engines", $_, "build.info"));
}
+ $config{build_infos} = [ ];
+
foreach (@build_infos) {
my $sourced = catdir($srcdir, $_->[0]);
my $buildd = catdir($blddir, $_->[0]);
@@ -1289,6 +1291,7 @@ if ($builder eq "unified") {
my %renames = ();
my %sharednames = ();
+ push @{$config{build_infos}}, catfile(abs2rel($sourced, $blddir), $f);
my $template = Text::Template->new(TYPE => 'FILE',
SOURCE => catfile($sourced, $f));
die "Something went wrong with $sourced/$f: $!\n" unless $template;