diff options
author | rillig <rillig@pkgsrc.org> | 2005-12-01 03:12:09 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-12-01 03:12:09 +0000 |
commit | 5336c8a86d8e369ca7b86b8c31ce1015c6941ab9 (patch) | |
tree | eb8b59bda6ceb6026d05d8a1f96315249fad1ed8 /pkgtools | |
parent | 34fc9c76f2fe31b890f967b9c76bc1d9a340477e (diff) | |
download | pkgsrc-5336c8a86d8e369ca7b86b8c31ce1015c6941ab9.tar.gz |
Fixed two typos.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkglint/files/pkglint.pl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/pkglint/files/pkglint.pl b/pkgtools/pkglint/files/pkglint.pl index fc3138e2902..facd9dcaaa6 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.398 2005/12/01 03:10:16 rillig Exp $ +# $NetBSD: pkglint.pl,v 1.399 2005/12/01 03:12:09 rillig Exp $ # # This version contains lots of changes necessary for NetBSD packages # done by: @@ -2607,9 +2607,9 @@ sub checklines_package_Makefile($) { # if (($state != SCST_PAX_S && $state != SCST_SED_E) && $shellword =~ qr"^/" && $shellword ne "/dev/null") { - $line->log_warning("Found absolute pathname: ${sw}"); + $line->log_warning("Found absolute pathname: ${shellword}"); $line->explain( - "Absolute pathnames are often an indicator for unportable code. As" + "Absolute pathnames are often an indicator for unportable code. As", "pkgsrc aims to be a portable system, absolute pathnames should be", "avoided whenever possible."); } |