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

r=zach, a=justdave


git-svn-id: svn://10.0.0.236/trunk@137714 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
justdave%syndicomm.com 2003-02-12 15:51:08 +00:00
parent fee824d173
commit 46e1435e9d

View File

@ -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";
}