diff options
author | Richard Levitte <levitte@openssl.org> | 2018-03-14 12:39:45 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2018-03-14 16:06:37 +0100 |
commit | d35b2c72487dd07ca4e88a9c6bf4031a34e92dc1 (patch) | |
tree | a1a3ae5a6ee5f6a414f4099f635a0733e1dc64da /util/add-depends.pl | |
parent | Fix an error number clash (diff) | |
download | openssl-d35b2c72487dd07ca4e88a9c6bf4031a34e92dc1.tar.xz openssl-d35b2c72487dd07ca4e88a9c6bf4031a34e92dc1.zip |
util/add-depends.pl: sort the dependency files
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/5617)
Diffstat (limited to 'util/add-depends.pl')
-rw-r--r-- | util/add-depends.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/add-depends.pl b/util/add-depends.pl index 573986d686..d2bba5e192 100644 --- a/util/add-depends.pl +++ b/util/add-depends.pl @@ -15,6 +15,7 @@ my $buildfile = $config{build_file}; my $buildfile_new = "$buildfile-$$"; my $depext = $target{dep_extension} || ".d"; my @deps = + sort grep { -f $_ } map { (my $x = $_) =~ s|\.o$|$depext|; $x; } grep { $unified_info{sources}->{$_}->[0] =~ /\.cc?$/ } |