diff options
author | rillig <rillig@pkgsrc.org> | 2006-01-01 21:58:12 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2006-01-01 21:58:12 +0000 |
commit | 47b27e5390d2bd3304811e171304098a53506ddb (patch) | |
tree | 2945bb84de1351e8239553cc54974966f21472f1 /pkgtools | |
parent | ee04abda4547dc5f295a5e13040c5906df0fdab4 (diff) | |
download | pkgsrc-47b27e5390d2bd3304811e171304098a53506ddb.tar.gz |
- Uncommented the note that CONFIGURE_DIRS, BUILD_DIRS and INSTALL_DIRS
don't need to be prefixed with ${WRKSRC}, now that there will be no
more pullups to 2005Q3.
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 20515924439..cf58aba49c6 100644 --- a/pkgtools/pkglint/files/pkglint.pl +++ b/pkgtools/pkglint/files/pkglint.pl @@ -1,5 +1,5 @@ #! @PERL@ -w -# $NetBSD: pkglint.pl,v 1.444 2006/01/01 21:55:44 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.445 2006/01/01 21:58:12 rillig Exp $ # # pkglint - static analyzer and checker for pkgsrc packages @@ -2245,8 +2245,7 @@ sub checkline_mk_vartype_basic($$$$$) { } elsif ($type eq "WrksrcSubdirectory") { if ($value =~ qr"^(\$\{WRKSRC\}(?:/|$))") { my ($prefix) = ($1); - # TODO: uncomment after 2005Q4 - #$line->log_note("The \"${prefix}\" prefix is not needed here."); + $line->log_note("The \"${prefix}\" prefix is not needed here."); } elsif ($value ne "" && $value_novar eq "") { # The value of another variable |