diff options
author | rillig <rillig@pkgsrc.org> | 2006-01-27 00:56:26 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-01-27 00:56:26 +0000 |
commit | a45550b4ce4084637e876cff068ce9b8b53338e6 (patch) | |
tree | 380d10f576dc7c5e1418fbdab4a953b06bc5caa2 /pkgtools | |
parent | 825e4abfb6a9e160f3630340ed577d05485e91bb (diff) | |
download | pkgsrc-a45550b4ce4084637e876cff068ce9b8b53338e6.tar.gz |
- Fixed inconsistent use of white-space.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index 33072581616..51f2fe902f9 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -1,5 +1,5 @@ #! @PERL@ -# $NetBSD: pkglint.pl,v 1.489 2006/01/27 00:55:08 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.490 2006/01/27 00:56:26 rillig Exp $ # # pkglint - static analyzer and checker for pkgsrc packages @@ -153,7 +153,7 @@ use constant LL_DEBUG => 5; use constant traditional_type => ["FATAL", "ERROR", "WARN", "OK", "NOTE", "DEBUG"]; use constant gcc_type => ["fatal", "error", "warning", "info", "note", "debug"]; - + my $errors = 0; my $warnings = 0; my $verbosity = 0; @@ -1804,7 +1804,7 @@ sub readmakefile($$$$) { } if ($includefile =~ qr"(?:^|/)Makefile.common$" || ($includefile =~ qr"^(?:\.\./(\.\./[^/]+/)?[^/]+/)?([^/]+)$" - && (!defined($1) || $1 ne "../mk") + && (!defined($1) || $1 ne "../mk") && $2 ne "buildlink3.mk")) { $line->log_debug("including ${includefile} sets seen_Makefile_common."); $seen_Makefile_common = true; |