diff options
author | rillig <rillig@pkgsrc.org> | 2006-06-18 01:01:40 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-06-18 01:01:40 +0000 |
commit | 7f58b7cde4625aa77896cd9ec72af637c966072b (patch) | |
tree | 5a698068c357b7bcfe5a664af78d6ee2a2521a07 | |
parent | 23f3e49a0a73c0a8f1928c504a48437b5431881f (diff) | |
download | pkgsrc-7f58b7cde4625aa77896cd9ec72af637c966072b.tar.gz |
Don't treat comments as paragraph separators for the SUBST check. See
graphics/xfig for an example where it makes a difference.
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index 071b78a0db9..40c0e219aee 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -1,5 +1,5 @@ #! @PERL@ -# $NetBSD: pkglint.pl,v 1.629 2006/06/18 00:51:34 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.630 2006/06/18 01:01:40 rillig Exp $ # # pkglint - static analyzer and checker for pkgsrc packages @@ -4837,9 +4837,12 @@ sub checklines_mk($) { checkline_trailing_whitespace($line); checkline_spellcheck($line); - if ($text =~ qr"^\s*$" || $text =~ qr"^#") { + if ($text =~ qr"^\s*$") { $substcontext->check_end($line); + } elsif ($text =~ qr"^#") { + # No further checks. + } elsif ($text =~ regex_varassign) { my ($varname, $op, $value, $comment) = ($1, $2, $3, $4); my $space1 = substr($text, $+[1], $-[2] - $+[1]); |