summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorrillig <rillig>2006-05-02 07:12:19 +0000
committerrillig <rillig>2006-05-02 07:12:19 +0000
commitecdb8913024eeb46a730ce164f54dec25d1e82c4 (patch)
tree255c016f02a3b88e791a8951d772f3e7cb8c17f8 /pkgtools
parentd6a1926683f900b1186d32dbd74c312aa7f39945 (diff)
downloadpkgsrc-ecdb8913024eeb46a730ce164f54dec25d1e82c4.tar.gz
Non-optimal white-space is not worth a warning. A note is enough.
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 ea957cb0c1e..ec3c00a8d33 100644
--- a/pkgtools/pkglint/files/pkglint.pl
+++ b/pkgtools/pkglint/files/pkglint.pl
@@ -1,5 +1,5 @@
#! @PERL@
-# $NetBSD: pkglint.pl,v 1.571 2006/05/01 22:01:21 rillig Exp $
+# $NetBSD: pkglint.pl,v 1.572 2006/05/02 07:12:19 rillig Exp $
#
# pkglint - static analyzer and checker for pkgsrc packages
@@ -3943,7 +3943,7 @@ sub checklines_mk($) {
# Check the indentation
if ($indent ne " " x $mkctx_indent) {
- $opt_warn_space and $line->log_warning("This directive should be indented by ${mkctx_indent} spaces.");
+ $opt_warn_space and $line->log_note("This directive should be indented by ${mkctx_indent} spaces.");
}
if ($directive =~ qr"^(?:if|ifdef|ifndef|for|elif|else)$") {