projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7b7fdf8
)
util/add-depends.pl: go through shared_sources too
author
Richard Levitte
<levitte@openssl.org>
Thu, 1 Nov 2018 13:02:21 +0000
(14:02 +0100)
committer
Richard Levitte
<levitte@openssl.org>
Wed, 7 Nov 2018 13:40:02 +0000
(14:40 +0100)
Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7545)
(cherry picked from commit
3866b2247fb7904a4e660593a16365147f479415
)
util/add-depends.pl
patch
|
blob
|
history
diff --git
a/util/add-depends.pl
b/util/add-depends.pl
index deb0de238a7bf3df75816882edd97e7654593ea6..55d56b7613d1a81d9804610d17cad4b490fb9839 100644
(file)
--- 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;