diff options
author | rillig <rillig@pkgsrc.org> | 2005-07-01 21:12:18 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-07-01 21:12:18 +0000 |
commit | 74453add727048a321985bfb724955b503d280f4 (patch) | |
tree | 73e63d0247fdf4fd3838acb5473ec4e4dc833991 /pkgtools | |
parent | 2f6556dabc09cbac6c3c53153a4bcda2ba6e11f2 (diff) | |
download | pkgsrc-74453add727048a321985bfb724955b503d280f4.tar.gz |
Clarified the warning message when an uncommitted file has an expanded
NetBSD RCS tag instead of an unexpanded one. A user had complained about
it.
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 20002b15840..5530ba67d92 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -11,7 +11,7 @@ # Freely redistributable. Absolutely no warranty. # # From Id: portlint.pl,v 1.64 1998/02/28 02:34:05 itojun Exp -# $NetBSD: pkglint.pl,v 1.195 2005/06/27 19:28:08 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.196 2005/07/01 21:12:18 rillig Exp $ # # This version contains lots of changes necessary for NetBSD packages # done by: @@ -1511,7 +1511,7 @@ sub checkfile_Makefile($) { if ($tmp =~ /#(\s+)\$$conf_rcsidstr([^\$]*)\$/) { if ($2 ne '') { if (!is_committed($fname)) { - $opt_warn_vague && log_warning(NO_FILE, NO_LINE_NUMBER, "\"\$$conf_rcsidstr\$\" expected."); + $opt_warn_vague && log_warning(NO_FILE, NO_LINE_NUMBER, "Exactly \"\$$conf_rcsidstr\$\" expected for uncommitted files."); } } } |