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
commit557efb17c17cc38c3e6ec024a21c03ad25db92a6 (patch)
treefa4b595669058f805977801d974c53d11bf25c50 /pkgtools
parent1e3718a5e0c49016d81b53ecc37e63fecaa85c21 (diff)
downloadpkgsrc-557efb17c17cc38c3e6ec024a21c03ad25db92a6.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.