summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorrillig <rillig>2008-09-16 14:24:25 +0000
committerrillig <rillig>2008-09-16 14:24:25 +0000
commit3d03a7e087644478ef562660bfc14d96b0b9380a (patch)
tree7d1bb1989c6d87120f0cc412f1d361f42420ef41 /pkgtools
parentfa6101169203153ac069f7856cbef931b41f083d (diff)
downloadpkgsrc-3d03a7e087644478ef562660bfc14d96b0b9380a.tar.gz
Clarified a comment, since I didn't understand it two years after writing it.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkglint/files/pkglint.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl
index 9cbfb472ff5..93c36f12402 100644
--- a/pkgtools/pkglint/files/pkglint.pl
+++ b/pkgtools/pkglint/files/pkglint.pl
@@ -1,5 +1,5 @@
#! @PERL@
-# $NetBSD: pkglint.pl,v 1.772 2008/08/30 06:50:37 rillig Exp $
+# $NetBSD: pkglint.pl,v 1.773 2008/09/16 14:24:25 rillig Exp $
#
# pkglint - static analyzer and checker for pkgsrc packages
@@ -5900,9 +5900,9 @@ sub checkline_mk_varassign($$$$$) {
if ($varname eq "EVAL_PREFIX" && $value =~ qr"^([\w_]+)=") {
my ($eval_varname) = ($1);
- # This assignment will define the variable named
- # $eval_varname. It is marked as known in the current
- # file.
+ # The variables mentioned in EVAL_PREFIX will later be
+ # defined by find-prefix.mk. Therefore, they are marked
+ # as known in the current file.
$mkctx_vardef->{$eval_varname} = $line;
}