diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2001-11-25 23:24:26 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2001-11-25 23:24:26 +0000 |
commit | ad3cbb62762643f16259151010075ea3d45883d4 (patch) | |
tree | b95e2c938c5cc8d853c8ddb1b41c9a52e772b0b1 | |
parent | 2d24242885d5dc3038d9506d1ecf66bb041dd1ac (diff) | |
download | pkgsrc-ad3cbb62762643f16259151010075ea3d45883d4.tar.gz |
fix typo in error output message (s/PKNAME/PKGNAME). Patch from
Hubert Feyrer.
-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 |