diff options
author | jocuri%softhome.net <> | 2004-05-20 02:37:45 +0000 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-05-20 02:37:45 +0000 |
commit | b6c640be65192978350365f086d97bf14ae8cd87 (patch) | |
tree | 215e14eaf14468297d653524532926f7114318fd | |
parent | c8d6a7985eb70202f17efdf1a091c03da6be8a36 (diff) | |
download | bugs-b6c640be65192978350365f086d97bf14ae8cd87.tar bugs-b6c640be65192978350365f086d97bf14ae8cd87.tar.gz bugs-b6c640be65192978350365f086d97bf14ae8cd87.tar.bz2 bugs-b6c640be65192978350365f086d97bf14ae8cd87.tar.xz bugs-b6c640be65192978350365f086d97bf14ae8cd87.zip |
Patch for bug 244045: add --no-silent option to checksetup; patch by Byron Jones <bugzilla@glob.com.au>; r=vladd; a=justdave.
-rwxr-xr-x | checksetup.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index 76ef20732..a04623761 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -138,7 +138,7 @@ if ($ARGV[0] && ($ARGV[0] !~ /^--/)) { do $ARGV[0] or ($@ && die("Error $@ processing $ARGV[0]")) or die("Error $! processing $ARGV[0]"); - $silent = 1; + $silent = !grep(/^--no-silent$/, @ARGV); } ########################################################################### |