diff options
author | rillig <rillig@pkgsrc.org> | 2006-07-17 11:20:09 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-07-17 11:20:09 +0000 |
commit | 91eb468fe33e6ea754a13d74f2f001b1bf26cc66 (patch) | |
tree | 72fc174cc0c3379fe17e44f2b715f16887434cb0 /pkgtools | |
parent | 4e22c2d63d0816d191c475245669647559ff6546 (diff) | |
download | pkgsrc-91eb468fe33e6ea754a13d74f2f001b1bf26cc66.tar.gz |
Improved the wording of a warning a little bit.
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 10fcd555f43..b153b0357ac 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -1,5 +1,5 @@ #! @PERL@ -# $NetBSD: pkglint.pl,v 1.651 2006/07/17 11:16:43 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.652 2006/07/17 11:20:09 rillig Exp $ # # pkglint - static analyzer and checker for pkgsrc packages @@ -5697,7 +5697,7 @@ sub checklines_buildlink3_inclusion($) { # by the package but not by this file. foreach my $package_bl3 (sort(keys(%{$pkgctx_bl3}))) { if (!exists($included_files->{$package_bl3})) { - $pkgctx_bl3->{$package_bl3}->log_warning("${package_bl3}/buildlink3.mk is included by the package but not by this file."); + $pkgctx_bl3->{$package_bl3}->log_warning("${package_bl3}/buildlink3.mk is included by the package but not by the buildlink3.mk file."); } } } |