diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-04-24 15:22:07 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-04-24 15:22:07 +0100 |
commit | d1432d617e6ed04c33ca214d7f3b0099bdf53065 (patch) | |
tree | 68e5154a7d3fc053c64e4cb4ac9599733816dc4c /source4 | |
parent | b5d84a74d146cfe0d2e0c336a88bd269ad61cded (diff) | |
download | samba-d1432d617e6ed04c33ca214d7f3b0099bdf53065.tar.gz |
Distinguish between private and public dependencies in the dot file.
(This used to be commit 0690ce5211e659d5b8670d533fde77cf97048884)
Diffstat (limited to 'source4')
-rwxr-xr-x | source4/build/smb_build/dot.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/build/smb_build/dot.pl b/source4/build/smb_build/dot.pl index e50ee50f953..b30c320c6e1 100755 --- a/source4/build/smb_build/dot.pl +++ b/source4/build/smb_build/dot.pl @@ -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"; } } |