diff options
author | rillig <rillig@pkgsrc.org> | 2005-08-19 17:32:13 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-08-19 17:32:13 +0000 |
commit | e956158a4eb6d5a4d218d8ed22d012b1f05a74c6 (patch) | |
tree | b183bd1c79007ff81e3c8ea8123c17d26b15fe62 | |
parent | 9fd655b06cc244794241fba78a5857bd58adcb61 (diff) | |
download | pkgsrc-e956158a4eb6d5a4d218d8ed22d012b1f05a74c6.tar.gz |
Added the command line option -CDESCR, for consistency.
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index 0e9c179a65d..75c83509631 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.245 2005/08/19 16:08:08 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.246 2005/08/19 17:32:13 rillig Exp $ # # This version contains lots of changes necessary for NetBSD packages # done by: @@ -309,6 +309,7 @@ my (%options) = ( "-v|--verbose" => "print progress messages", ); +my $opt_check_DESCR = true; my $opt_check_distinfo = true; my $opt_check_extra = true; my $opt_check_bl3 = true; @@ -317,6 +318,7 @@ my $opt_check_MESSAGE = true; my $opt_check_patches = true; my $opt_check_PLIST = true; my (%checks) = ( + "DESCR" => [\$opt_check_DESCR, "check DESCR file"], "distinfo" => [\$opt_check_distinfo, "check distinfo file"], "bl3" => [\$opt_check_bl3, "check buildlink3 files"], "extra" => [\$opt_check_extra, "check various additional files"], @@ -2252,7 +2254,7 @@ sub checkdir_package($) { $opt_check_bl3 and checkfile_buildlink3_mk($dir, $f); } elsif ($f =~ qr"/DESCR[^/]*$") { - checkfile_DESCR($dir, $f); + $opt_check_DESCR and checkfile_DESCR($dir, $f); } elsif ($f =~ qr"/distinfo$") { $have_distinfo = true; |