From cc844939fdd2d88127bdf1ae6b70e84441b6107c Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Wed, 12 Feb 2003 23:51:08 +0000 Subject: Bug 192874: checksetup.pl wasn't silencing the GraphViz check when running in silent mode. r=zach, a=justdave --- checksetup.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'checksetup.pl') 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"; } -- cgit v1.2.3-24-g4f1b