diff options
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-x | checksetup.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/checksetup.pl b/checksetup.pl index e6e5c398f..3dd5e8184 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -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"; } |