[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Wed Nov 7 13:39:10 UTC 2018


The branch master has been updated
       via  3866b2247fb7904a4e660593a16365147f479415 (commit)
      from  47d2080facaacda0610bb0954da9f289de8d700b (commit)


- Log -----------------------------------------------------------------
commit 3866b2247fb7904a4e660593a16365147f479415
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)

-----------------------------------------------------------------------

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