summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-06-28 00:29:25 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-06-28 01:13:26 (EDT)
commit0a8e076e522b426bcb4fd45a0ad69479a0f01943 (patch)
treeccc2129dcda535ef4e517764c2a58772613e59c8
parentc54373d742889e480a85f3b46812520dcd6dc60b (diff)
Make graph strict
-rwxr-xr-xbin/depsdot4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/depsdot b/bin/depsdot
index 37d495d..35d1d36 100755
--- a/bin/depsdot
+++ b/bin/depsdot
@@ -76,8 +76,8 @@ sub main
STDOUT->print("/*\n * ProteanOS source package dependencies\n" .
' * Generated ' . strftime('on %Y-%m-%d at %H:%M:%S %Z',
localtime()) . "\n */\n\n" .
- "digraph deps {\n\toverlap = false;\n\tsplines = true;\n" .
- "\tlayout = \"neato\";\n" .
+ "strict digraph deps {\n" .
+ "\toverlap = false;\n\tsplines = true;\n\tlayout = neato;\n" .
"\tlabel = \"ProteanOS Source Package Dependencies\";\n" .
"\n\t/* Source packages */\n");
foreach my $src (sort(@src_pkgs)) {