summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorrillig <rillig>2005-11-08 21:13:43 +0000
committerrillig <rillig>2005-11-08 21:13:43 +0000
commitef3be47d748afd2799f85ef292a0b000dd8d4dda (patch)
treec6e65a7b0d6229324ebb409784cb7578a64baa39 /pkgtools
parenta962a7acbded2010749b10285e7c1e0e4b96c740 (diff)
downloadpkgsrc-ef3be47d748afd2799f85ef292a0b000dd8d4dda.tar.gz
Fixed a typo ($line->error -> $line->log_error).
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkglint/files/pkglint.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl
index 5e2f89961df..548dbd67c6c 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.338 2005/11/08 21:09:48 rillig Exp $
+# $NetBSD: pkglint.pl,v 1.339 2005/11/08 21:13:43 rillig Exp $
#
# This version contains lots of changes necessary for NetBSD packages
# done by:
@@ -2084,7 +2084,7 @@ sub checklines_package_Makefile($) {
my ($varname, $op, $value, $comment) = ($1, $2, $3, $4);
if ($varname =~ qr"^_") {
- $line->error("Variable names starting with an underscore are reserved for internal pkgsrc use.");
+ $line->log_error("Variable names starting with an underscore are reserved for internal pkgsrc use.");
}
if ($varname eq "COMMENT") {