summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorrillig <rillig>2005-07-20 21:09:28 +0000
committerrillig <rillig>2005-07-20 21:09:28 +0000
commit3953800cd462a7ee4d44771a9944c4cf2a44840b (patch)
tree4fd76bda5ea070b50fd52d9f2f2dfb524652e68e /pkgtools
parentaeaba9ccdc1aa7093842f05555988a8d665d956c (diff)
downloadpkgsrc-3953800cd462a7ee4d44771a9944c4cf2a44840b.tar.gz
Don't print "vague" diagnostics by default. A "vague" diagnostic is one
that has been in pkglint before I started hacking it. Mostly, they don't contain a specific file location where to look for the cause or they are generated using dubious code. The remaining warnings are only a few, but they are mostly usable and valid.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkglint/files/pkglint.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl
index 75098be295d..878fa544c2b 100644
--- a/pkgtools/pkglint/files/pkglint.pl
+++ b/pkgtools/pkglint/files/pkglint.pl
@@ -11,7 +11,7 @@
# Freely redistributable. Absolutely no warranty.
#
# From Id: portlint.pl,v 1.64 1998/02/28 02:34:05 itojun Exp
-# $NetBSD: pkglint.pl,v 1.211 2005/07/20 21:04:16 rillig Exp $
+# $NetBSD: pkglint.pl,v 1.212 2005/07/20 21:09:28 rillig Exp $
#
# This version contains lots of changes necessary for NetBSD packages
# done by:
@@ -319,7 +319,7 @@ my $opt_warn_order = true;
my $opt_warn_paren = true;
my $opt_warn_plist_sort = false;
my $opt_warn_types = true;
-my $opt_warn_vague = true;
+my $opt_warn_vague = false;
my $opt_warn_workdir = true;
my (%warnings) = (
"absname" => [\$opt_warn_absname, "warn about use of absolute file names"],