diff options
-rw-r--r-- | doc/CHANGES | 3 | ||||
-rw-r--r-- | pkgtools/pkgchk/Makefile | 4 | ||||
-rwxr-xr-x | pkgtools/pkgchk/files/pkgchk.sh | 4 |
3 files changed, 6 insertions, 5 deletions
diff --git a/doc/CHANGES b/doc/CHANGES index 7769e7c3b20..0930820608e 100644 --- a/doc/CHANGES +++ b/doc/CHANGES @@ -1,4 +1,4 @@ -$NetBSD: CHANGES,v 1.2528 2003/06/18 08:17:58 wiz Exp $ +$NetBSD: CHANGES,v 1.2529 2003/06/18 08:58:48 abs Exp $ Changes to the packages collection and infrastructure in 2003: @@ -2483,3 +2483,4 @@ Changes to the packages collection and infrastructure in 2003: Updated cvsync to 0.23.2 [gehenna 2003-06-18] Updated cvsync to 0.23.3 [gehenna 2003-06-18] Updated htmllint to 20030518 [wiz 2003-06-18] + Updated pkgchk to 1.38 [abs 2003-06-18] diff --git a/pkgtools/pkgchk/Makefile b/pkgtools/pkgchk/Makefile index ff3784c39b9..dd96b73c1d1 100644 --- a/pkgtools/pkgchk/Makefile +++ b/pkgtools/pkgchk/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.40 2003/06/16 11:52:52 abs Exp $ +# $NetBSD: Makefile,v 1.41 2003/06/18 08:58:12 abs Exp $ -DISTNAME= pkgchk-1.37 +DISTNAME= pkgchk-1.38 WRKSRC= ${WRKDIR} CATEGORIES= pkgtools MASTER_SITES= # empty diff --git a/pkgtools/pkgchk/files/pkgchk.sh b/pkgtools/pkgchk/files/pkgchk.sh index 9e9500990e3..74895a9e60a 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.40 2003/06/16 11:52:53 abs Exp $ +# $Id: pkgchk.sh,v 1.41 2003/06/18 08:58:13 abs 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} '/PKGPATH= /{printf $2" "}'` + PKGDIRLIST=`sh -c "${PKG_INFO} -B \*" | ${AWK} -F= '/PKGPATH=/{printf $2" "}'` fi if [ -n "$opt_c" ];then |