diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-27 23:36:50 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-06-27 23:43:42 (EDT) |
commit | 6f21ef6e0249806f9893ee825ac5cfb7f99b9640 (patch) | |
tree | 422862a9e1ef0603a71f632794314c687b8a0437 /bin | |
parent | 4bfe39bdb6fd9f76be70783b1558d0c29f1dcd1d (diff) |
Override preferred layout engine
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/depsdot | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/bin/depsdot b/bin/depsdot index f338abc..6522432 100755 --- a/bin/depsdot +++ b/bin/depsdot @@ -73,10 +73,9 @@ sub main } STDOUT->print("/*\n * ProteanOS source package dependencies\n" . ' * Generated ' . strftime('on %Y-%m-%d at %H:%M:%S %Z', - localtime()) . "\n" . - " * Render with neato(1) from Graphviz.\n */\n\n" . - "digraph deps {\n\toverlap = false;\n\tsplines = true;\n\n" . - "\t/* Source packages */\n"); + localtime()) . "\n */\n\n" . + "digraph deps {\n\toverlap = false;\n\tsplines = true;\n" . + "\tlayout = \"neato\";\n\n\t/* Source packages */\n"); foreach my $src (sort(@src_pkgs)) { STDOUT->print("\t\"" . $src . "\";\n"); } |