diff options
author | rillig <rillig@pkgsrc.org> | 2006-05-02 07:12:19 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-05-02 07:12:19 +0000 |
commit | ae1b142935f0ecfd21bbe91b47b66164a3078eb6 (patch) | |
tree | 255c016f02a3b88e791a8951d772f3e7cb8c17f8 /pkgtools | |
parent | 6d42a4569e4dc8caf0c234a3e529087b91c60aa9 (diff) | |
download | pkgsrc-ae1b142935f0ecfd21bbe91b47b66164a3078eb6.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.pl | 4 |
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)$") { |