summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2005-07-02 12:02:58 +0000
committerrillig <rillig@pkgsrc.org>2005-07-02 12:02:58 +0000
commit76a715207707f6a23710f29f3a1b56a9d3f33825 (patch)
treefa4b595669058f805977801d974c53d11bf25c50 /pkgtools
parent5ce4bf764640f719ac816c302ab4f6520cb05a3b (diff)
downloadpkgsrc-76a715207707f6a23710f29f3a1b56a9d3f33825.tar.gz
Removed the check for expanded RCS tag completely, assuming no one will
ever need to distinguish between expanded and unexpanded RCS tags while committing.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkglint/files/pkglint.pl15
1 files changed, 3 insertions, 12 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl
index 5530ba67d92..c1b78fa0d89 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.196 2005/07/01 21:12:18 rillig Exp $
+# $NetBSD: pkglint.pl,v 1.197 2005/07/02 12:02:58 rillig Exp $
#
# This version contains lots of changes necessary for NetBSD packages
# done by:
@@ -1504,17 +1504,8 @@ sub checkfile_Makefile($) {
}
$idx = 0;
- #
- # section 1: comment lines.
- #
- $tmp = $sections[$idx++];
- if ($tmp =~ /#(\s+)\$$conf_rcsidstr([^\$]*)\$/) {
- if ($2 ne '') {
- if (!is_committed($fname)) {
- $opt_warn_vague && log_warning(NO_FILE, NO_LINE_NUMBER, "Exactly \"\$$conf_rcsidstr\$\" expected for uncommitted files.");
- }
- }
- }
+ # section 1 (comment lines): No checks needed
+ $idx++;
#
# for the rest of the checks, comment lines are not important.