diff options
author | justdave%syndicomm.com <> | 2003-02-13 00:51:08 +0100 |
---|---|---|
committer | justdave%syndicomm.com <> | 2003-02-13 00:51:08 +0100 |
commit | cc844939fdd2d88127bdf1ae6b70e84441b6107c (patch) | |
tree | b2d448ffbb458816b447e1dc9a5c2784abb86276 | |
parent | 6f1cb53a2d3d74f2dd29334879ca66eb0fe91ec6 (diff) | |
download | bugzilla-cc844939fdd2d88127bdf1ae6b70e84441b6107c.tar.gz bugzilla-cc844939fdd2d88127bdf1ae6b70e84441b6107c.tar.xz |
Bug 192874: checksetup.pl wasn't silencing the GraphViz check when running in silent mode.
r=zach, a=justdave
-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"; } |