diff options
author | rillig <rillig@pkgsrc.org> | 2008-01-05 21:54:50 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2008-01-05 21:54:50 +0000 |
commit | 50295b3994a2736089a9d5b4ad2be89268180552 (patch) | |
tree | 287619b728484310c328478266b4ce4017939b7a /pkgtools/pkglint | |
parent | adf612c8e15150364064cd923647559af19caaa5 (diff) | |
download | pkgsrc-50295b3994a2736089a9d5b4ad2be89268180552.tar.gz |
Improved the wording of the "Makefiles must not be included" error message.
Diffstat (limited to 'pkgtools/pkglint')
-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 53530b543f4..11ec7cb7d71 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -1,5 +1,5 @@ #! @PERL@ -# $NetBSD: pkglint.pl,v 1.751 2008/01/05 18:41:02 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.752 2008/01/05 21:54:50 rillig Exp $ # # pkglint - static analyzer and checker for pkgsrc packages @@ -6207,7 +6207,7 @@ sub checklines_mk($) { checkline_relative_path($line, $includefile); if ($includefile =~ qr"../Makefile$") { - $line->log_error("Other Makefiles must not be included."); + $line->log_error("Other Makefiles must not be included directly."); $line->explain_warning( "If you want to include portions of another Makefile, extract", "the common parts and put them into a Makefile.common. After", |