[openssl-commits] [openssl] OpenSSL_1_1_1-stable update
Richard Levitte
levitte at openssl.org
Wed Nov 7 13:40:22 UTC 2018
The branch OpenSSL_1_1_1-stable has been updated
via 4274ef97c1300d1924c537b7d4c91bb8494a5de2 (commit)
from 7b7fdf8a791720f8d19276a9012b1248956e00e0 (commit)
- Log -----------------------------------------------------------------
commit 4274ef97c1300d1924c537b7d4c91bb8494a5de2
Author: Richard Levitte <levitte at openssl.org>
Date: Thu Nov 1 14:02:21 2018 +0100
util/add-depends.pl: go through shared_sources too
Reviewed-by: Tim Hudson <tjh at openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7545)
(cherry picked from commit 3866b2247fb7904a4e660593a16365147f479415)
-----------------------------------------------------------------------
Summary of changes:
util/add-depends.pl | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/util/add-depends.pl b/util/add-depends.pl
index deb0de2..55d56b7 100644
--- a/util/add-depends.pl
+++ b/util/add-depends.pl
@@ -36,8 +36,10 @@ my @depfiles =
scalar @st > 0; # Determines the grep result
}
map { (my $x = $_) =~ s|\.o$|$depext|; $x; }
- grep { $unified_info{sources}->{$_}->[0] =~ /\.cc?$/ }
- keys %{$unified_info{sources}};
+ ( ( grep { $unified_info{sources}->{$_}->[0] =~ /\.cc?$/ }
+ keys %{$unified_info{sources}} ),
+ ( grep { $unified_info{shared_sources}->{$_}->[0] =~ /\.cc?$/ }
+ keys %{$unified_info{shared_sources}} ) );
exit 0 unless $rebuild;
More information about the openssl-commits
mailing list