Bug 192874: checksetup.pl wasn't silencing the GraphViz check when running in silent mode.

r=zach, a=justdave
parent 6f1cb53a
......@@ -1311,9 +1311,9 @@ END { $dbh->disconnect if $dbh }
#
if( Param('webdotbase') && Param('webdotbase') !~ /^https?:/ ) {
printf("Checking for %15s %-9s ", "GraphViz", "(any)");
printf("Checking for %15s %-9s ", "GraphViz", "(any)") unless $silent;
if(-x Param('webdotbase')) {
print "ok: found\n";
print "ok: found\n" unless $silent;
} else {
print "not a valid executable: " . Param{'webdotbase'} . "\n";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment