From: justdave%syndicomm.com <> Date: Wed, 12 Feb 2003 23:51:08 +0000 (+0000) Subject: Bug 192874: checksetup.pl wasn't silencing the GraphViz check when running in silent... X-Git-Tag: bugzilla-2.17.4~74 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc844939fdd2d88127bdf1ae6b70e84441b6107c;p=thirdparty%2Fbugzilla.git Bug 192874: checksetup.pl wasn't silencing the GraphViz check when running in silent mode. r=zach, a=justdave --- diff --git a/checksetup.pl b/checksetup.pl index e6e5c398f1..3dd5e8184e 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"; }