diff options
author | hubertf <hubertf@pkgsrc.org> | 1999-10-30 16:36:44 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1999-10-30 16:36:44 +0000 |
commit | 6412ca008e94557a574555ff06d5cf42b25b9e48 (patch) | |
tree | 37d2d9911c26dfd1db721e8c8369d13db5f3c4fd | |
parent | 78d5fbce3a0b224c963ab1c5361df8658fa79b6b (diff) | |
download | pkgsrc-6412ca008e94557a574555ff06d5cf42b25b9e48.tar.gz |
Fix type, pointed out by Berndt Josef Wulf <wulf@dingo.ping.net.au>
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index e2970df2fc5..89caf945ae4 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.12 1999/09/13 02:44:47 hubertf Exp $ +# $NetBSD: pkglint.pl,v 1.13 1999/10/30 16:36:44 hubertf Exp $ # # This version contains some changes necessary for NetBSD packages # done by Hubert Feyrer <hubertf@netbsd.org> and @@ -239,7 +239,7 @@ sub checkdescr { } if ($longlines > 0) { &perror("WARN: $i includes lines that exceed $maxchars{$file} ". - "charactors."); + "characters."); } if ($tmp =~ /[\033\200-\377]/) { &perror("WARN: pkg/DESCR includes iso-8859-1, or ". |