mirror of
https://github.com/samba-team/samba.git
synced 2025-02-02 09:47:23 +03:00
Distinguish between private and public dependencies in the dot file.
This commit is contained in:
parent
760378e029
commit
0690ce5211
@ -26,10 +26,10 @@ sub generate($$$)
|
||||
foreach my $part (values %{$depend}) {
|
||||
next if (defined($only) and not contains($only,$part->{NAME}));
|
||||
foreach my $elem (@{$part->{PUBLIC_DEPENDENCIES}}) {
|
||||
$res .= "\t\"$part->{NAME}\" -> \"$elem\"; /* public */\n";
|
||||
$res .= "\t\"$part->{NAME}\" -> \"$elem\" [style=filled]; /* public */\n";
|
||||
}
|
||||
foreach my $elem (@{$part->{PRIVATE_DEPENDENCIES}}) {
|
||||
$res .= "\t\"$part->{NAME}\" -> \"$elem\"; /* private */\n";
|
||||
$res .= "\t\"$part->{NAME}\" -> \"$elem\" [style=dotted]; /* private */\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user