diff options
author | tron <tron@pkgsrc.org> | 2003-06-19 13:37:00 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2003-06-19 13:37:00 +0000 |
commit | e14347c3047d593d4b93c7757aefcd73a424ddef (patch) | |
tree | 57f1b86a99f43cb662d76461b04f1fc2570abc99 /pkgtools/pkgchk | |
parent | dff0c95afb0e8a7d131db252259b9e3a2b4b5993 (diff) | |
download | pkgsrc-e14347c3047d593d4b93c7757aefcd73a424ddef.tar.gz |
Fix a bug which caused "pkg_chk" not to check all packages on system with
many (>500) packages installed. Bump package version to 1.39.
Diffstat (limited to 'pkgtools/pkgchk')
-rw-r--r-- | pkgtools/pkgchk/Makefile | 4 | ||||
-rwxr-xr-x | pkgtools/pkgchk/files/pkgchk.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgtools/pkgchk/Makefile b/pkgtools/pkgchk/Makefile index dd96b73c1d1..9c603376dad 100644 --- a/pkgtools/pkgchk/Makefile +++ b/pkgtools/pkgchk/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.41 2003/06/18 08:58:12 abs Exp $ +# $NetBSD: Makefile,v 1.42 2003/06/19 13:37:00 tron Exp $ -DISTNAME= pkgchk-1.38 +DISTNAME= pkgchk-1.39 WRKSRC= ${WRKDIR} CATEGORIES= pkgtools MASTER_SITES= # empty diff --git a/pkgtools/pkgchk/files/pkgchk.sh b/pkgtools/pkgchk/files/pkgchk.sh index 74895a9e60a..4755c5f85f9 100755 --- a/pkgtools/pkgchk/files/pkgchk.sh +++ b/pkgtools/pkgchk/files/pkgchk.sh @@ -1,6 +1,6 @@ #!/bin/sh -e # -# $Id: pkgchk.sh,v 1.41 2003/06/18 08:58:13 abs Exp $ +# $Id: pkgchk.sh,v 1.42 2003/06/19 13:37:01 tron Exp $ # # TODO: Handle updates with dependencies via binary packages @@ -338,7 +338,7 @@ cd $PKGSRCDIR real_pkgsrcdir=`pwd` if [ -n "$opt_i" ];then - PKGDIRLIST=`sh -c "${PKG_INFO} -B \*" | ${AWK} -F= '/PKGPATH=/{printf $2" "}'` + PKGDIRLIST=`sh -c "${PKG_INFO} -B \*" | ${AWK} -F= '/PKGPATH=/{print $2" "}'` fi if [ -n "$opt_c" ];then |