diff options
author | rillig <rillig@pkgsrc.org> | 2005-10-24 19:56:05 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-10-24 19:56:05 +0000 |
commit | a047b0490211d0d58dbe8694ac9e292e56b500a7 (patch) | |
tree | 745557e281087cb2e712fb3331150d0bd77ff82f /pkgtools | |
parent | eaf1102c556557104d939c2a9e091cddfd072981 (diff) | |
download | pkgsrc-a047b0490211d0d58dbe8694ac9e292e56b500a7.tar.gz |
Allow all variables ending in _SED or _AWK to be constructed using the
"+=" operator.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index 6e15accdd13..0e79376c0cd 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.303 2005/10/24 18:20:40 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.304 2005/10/24 19:56:05 rillig Exp $ # # This version contains lots of changes necessary for NetBSD packages # done by: @@ -1207,6 +1207,7 @@ sub get_regex_plurals() { my @plurals_ok = qw( .*S .*LIST + .*_AWK .*_ENV .*_REQD .*_SED @@ -1219,7 +1220,6 @@ sub get_regex_plurals() { PLIST_CAT PLIST_PRE PREPEND_PATH - SUBST_SED _.* ); my @plurals_missing_an_s = qw( @@ -1247,7 +1247,6 @@ sub get_regex_plurals() { my @plurals_reluctantly_accepted = qw( CRYPTO FIX_RPATH - PRINT_PLIST_AWK PYTHON_VERSIONS_INCOMPATIBLE REPLACE_INTERPRETER REPLACE_PERL |