summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2005-12-08 10:07:20 +0000
committerrillig <rillig@pkgsrc.org>2005-12-08 10:07:20 +0000
commit1f93724529d903b40060241667dba833ee5564b8 (patch)
treea60813776602fba6efd1f55b0420cafb062f49e1 /pkgtools
parentbd2df73ecdcd5da5c18635562999fbe7fa01ebeb (diff)
downloadpkgsrc-1f93724529d903b40060241667dba833ee5564b8.tar.gz
- Fixed a typo (SUBST_PLIST => PLIST_SUBST) noted by wiz.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkglint/files/pkglint.pl6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl
index 934cdf9c35f..33ba20eb1ca 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.432 2005/12/08 09:01:08 rillig Exp $
+# $NetBSD: pkglint.pl,v 1.433 2005/12/08 10:07:20 rillig Exp $
#
# This version contains lots of changes necessary for NetBSD packages
# done by:
@@ -2193,9 +2193,9 @@ sub checkline_mk_varassign($$$$$) {
"operator when they are appended. As it is hard to check whether a",
"variable that is appended to PLIST_SUBST is already quoted or not, you",
"should not have pre-quoted variables at all. To solve this, you should",
- "directly use SUBST_PLIST+= ${varname}=${value} or use any other",
+ "directly use PLIST_SUBST+= ${varname}=${value} or use any other",
"variable for collecting the list of PLIST substitutions and later",
- "append that variable with SUBST_PLIST+= \${MY_SUBST_PLIST}.");
+ "append that variable with PLIST_SUBST+= \${MY_PLIST_SUBST}.");
}
}