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 | d4fc30f02262799a5bc42dae82e6545394946e7b (patch) | |
tree | 72fc174cc0c3379fe17e44f2b715f16887434cb0 | |
parent | 58d7049d90856565e2b2d02fafc1d066579278fa (diff) | |
download | pkgsrc-d4fc30f02262799a5bc42dae82e6545394946e7b.tar.gz |
Improved the wording of a warning a little bit.
-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."); } } } |