summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-04-24 15:22:07 +0100
committerJelmer Vernooij <jelmer@samba.org>2008-04-24 15:22:07 +0100
commitd1432d617e6ed04c33ca214d7f3b0099bdf53065 (patch)
tree68e5154a7d3fc053c64e4cb4ac9599733816dc4c
parentb5d84a74d146cfe0d2e0c336a88bd269ad61cded (diff)
downloadsamba-d1432d617e6ed04c33ca214d7f3b0099bdf53065.tar.gz
samba-d1432d617e6ed04c33ca214d7f3b0099bdf53065.tar.bz2
samba-d1432d617e6ed04c33ca214d7f3b0099bdf53065.zip
Distinguish between private and public dependencies in the dot file.
(This used to be commit 0690ce5211e659d5b8670d533fde77cf97048884)
-rwxr-xr-xsource4/build/smb_build/dot.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/build/smb_build/dot.pl b/source4/build/smb_build/dot.pl
index e50ee50f95..b30c320c6e 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";
}
}