diff options
author | abs <abs@pkgsrc.org> | 2001-09-28 11:30:54 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2001-09-28 11:30:54 +0000 |
commit | 96c81a12aea1264c5b3ef0efd0281c30a1f5e396 (patch) | |
tree | 070e023bd226b1d0c709ede287b0d69d0630cfeb /pkgtools/pkgchk | |
parent | 6b12727d2038aa687b1589059d763ebe1a1e319d (diff) | |
download | pkgsrc-96c81a12aea1264c5b3ef0efd0281c30a1f5e396.tar.gz |
Update pkgchk to 1.15
Make -r work with -B
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 5bf8626979b..5381f59c003 100644 --- a/pkgtools/pkgchk/Makefile +++ b/pkgtools/pkgchk/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.15 2001/09/28 09:58:15 abs Exp $ +# $NetBSD: Makefile,v 1.16 2001/09/28 11:30:54 abs Exp $ -DISTNAME= pkgchk-1.14 +DISTNAME= pkgchk-1.15 CATEGORIES= pkgtools MASTER_SITES= # empty DISTFILES= # empty diff --git a/pkgtools/pkgchk/files/pkgchk.sh b/pkgtools/pkgchk/files/pkgchk.sh index bc20a913c98..49ed83436c7 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.16 2001/09/28 09:58:15 abs Exp $ +# $Id: pkgchk.sh,v 1.17 2001/09/28 11:30:55 abs Exp $ # # TODO: Handle and as well as or tags (eg: i386+x11) # TODO: Handle updates with dependencies via binary packages @@ -325,7 +325,7 @@ for pkgdir in $PKGDIRLIST ; do installed_build_version=`cat /var/db/pkg/$PKGNAME/+BUILD_VERSION | sed "s:^${real_pkgsrcdir}/::"` if [ x"$current_build_version" != x"$installed_build_version" ];then echo "$PKGNAME: build version information mismatch" - mismatch="$mismatch $pkginstalled" + mismatch="$mismatch $PKGNAME" # should we mark this pkg to be updated if -u is given ?? elif [ -n "$opt_v" ];then echo "$PKGNAME: OK" |