diff options
author | dmcmahill <dmcmahill> | 2001-11-25 23:24:26 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2001-11-25 23:24:26 +0000 |
commit | b60930efc0d39b3f650c6336e0e4611087961240 (patch) | |
tree | b95e2c938c5cc8d853c8ddb1b41c9a52e772b0b1 /mk | |
parent | 4304ac92183c1f35d7e471a1ad234748829f9cdd (diff) | |
download | pkgsrc-b60930efc0d39b3f650c6336e0e4611087961240.tar.gz |
fix typo in error output message (s/PKNAME/PKGNAME). Patch from
Hubert Feyrer.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bulk/printindex | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bulk/printindex b/mk/bulk/printindex index ef72f33e9b4..9e834f85c27 100644 --- a/mk/bulk/printindex +++ b/mk/bulk/printindex @@ -1,5 +1,5 @@ #!/bin/sh -# $NetBSD: printindex,v 1.6 2001/10/14 20:34:53 dmcmahill Exp $ +# $NetBSD: printindex,v 1.7 2001/11/25 23:24:26 dmcmahill Exp $ # # # Copyright (c) 2001 The NetBSD Foundation, Inc. @@ -71,7 +71,7 @@ do cd $pkgdir pkgname=`make show-var VARNAME=PKGNAME` if [ $? != 0 ]; then - echo "ERROR: printindex could not extract PKNAME for $pkgdir" > /dev/stderr + echo "ERROR: printindex could not extract PKGNAME for $pkgdir" > /dev/stderr echo "make show-var VARNAME=PKGNAME failed" > $brokenfile make show-var VARNAME=PKGNAME >> $brokenfile 2>&1 exit 1 |