summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2003-02-13 00:51:08 +0100
committerjustdave%syndicomm.com <>2003-02-13 00:51:08 +0100
commitcc844939fdd2d88127bdf1ae6b70e84441b6107c (patch)
treeb2d448ffbb458816b447e1dc9a5c2784abb86276 /checksetup.pl
parent6f1cb53a2d3d74f2dd29334879ca66eb0fe91ec6 (diff)
downloadbugzilla-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
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl4
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";
}