Skip to content

Commit

Permalink
descrip.mms.tmpl: Simplify fiddling of logical names record and statem
Browse files Browse the repository at this point in the history
Instead of enumerating exactly those files in test/ that include
../ssl/ssl_locl.h, assume they all do.

Reviewed-by: Rich Salz <[email protected]>
(Merged from openssl#1891)
  • Loading branch information
levitte committed Nov 10, 2016
1 parent 6a69e86 commit 5a5b85d
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions Configurations/descrip.mms.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -63,12 +63,8 @@
}
my $sd1 = sourcedir("ssl","record");
my $sd2 = sourcedir("ssl","statem");
my @ssl_locl_users =
( "[.test]cipher_overhead_test.o",
"[.test]dtls_mtu_test.o",
"[.test]heartbeat_test.o",
"[.test]ssltest_old.o",
grep /^\[\.ssl\.(?:record|statem)\].*\.o$/, keys %{$unified_info{sources}} );
my @ssl_locl_users = grep(/^\[\.(?:ssl\.(?:record|statem)|test)\].*\.o$/,
keys %{$unified_info{sources}});
foreach (@ssl_locl_users) {
(my $x = $_) =~ s|\.o$|.OBJ|;
$unified_info{before}->{$x}
Expand Down

0 comments on commit 5a5b85d

Please sign in to comment.