diff options
author | rillig <rillig@pkgsrc.org> | 2005-05-22 22:37:01 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-05-22 22:37:01 +0000 |
commit | 46e4b9e24e93a8680d8de742b9845e56e75418b5 (patch) | |
tree | 88966fc7d394094ff2361bbc296b4852d21cee4e /pkgtools | |
parent | 25840d5cb01548e4e4315f4eeea107746c88c9db (diff) | |
download | pkgsrc-46e4b9e24e93a8680d8de742b9845e56e75418b5.tar.gz |
Made the check for non-empty RCS Id tags independent from the --verbose
command line option.
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 5b3eb7f3003..ee2838266a1 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.164 2005/05/22 22:27:52 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.165 2005/05/22 22:37:01 rillig Exp $ # # This version contains lots of changes necessary for NetBSD packages # done by Hubert Feyrer <hubertf@netbsd.org>, @@ -1456,7 +1456,7 @@ sub checkfile_Makefile($) { "right before \$$conf_rcsidstr\$ tag."); } if ($2 ne '') { - if (PkgLint::Logging::is_verbose || $opt_check_newpkg) { # XXX + if ($opt_check_newpkg) { log_warning(NO_FILE, NO_LINE_NUMBER, "". ($opt_check_newpkg ? 'for new package, ' : 'is it a new package? if so, '). |