diff options
author | abs <abs@pkgsrc.org> | 2006-06-07 16:27:14 +0000 |
---|---|---|
committer | abs <abs@pkgsrc.org> | 2006-06-07 16:27:14 +0000 |
commit | 867a7377dcc622910ff7f4e7ff10fa24e63b1443 (patch) | |
tree | b352aa6be0f02c89c81ce6d1a8ce2dc20b7b9064 /pkgtools/pkg_chk/files | |
parent | 1ee58224a670ba20b1fcfd7a8beae2d38ef22d51 (diff) | |
download | pkgsrc-867a7377dcc622910ff7f4e7ff10fa24e63b1443.tar.gz |
Update pkg_chk to 1.74
1.73 was completely broken.. but only after checking in.
ahh... Unwanted expansion of RCS tags, I know ye well...
Diffstat (limited to 'pkgtools/pkg_chk/files')
-rwxr-xr-x | pkgtools/pkg_chk/files/pkg_chk.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgtools/pkg_chk/files/pkg_chk.sh b/pkgtools/pkg_chk/files/pkg_chk.sh index a19821ea1bc..b80606a34ca 100755 --- a/pkgtools/pkg_chk/files/pkg_chk.sh +++ b/pkgtools/pkg_chk/files/pkg_chk.sh @@ -1,6 +1,6 @@ #!@SH@ -e # -# $Id: pkg_chk.sh,v 1.34 2006/06/07 13:52:39 abs Exp $ +# $Id: pkg_chk.sh,v 1.35 2006/06/07 16:27:14 abs Exp $ # # TODO: Make -g check dependencies and tsort # TODO: Variation of -g which only lists top level packages @@ -66,8 +66,8 @@ check_packages_installed() else if [ -n "$opt_B" ];then # sort here temporarily to handle older +BUILD_VERSION - current_build_ver=$(get_build_ver | ${SED} "s|.*\$NetBSD: pkg_chk.sh,v 1.34 2006/06/07 13:52:39 abs Exp ${SORT} -u) - installed_build_ver=$(${SED} "s|.*\$NetBSD: pkg_chk.sh,v 1.34 2006/06/07 13:52:39 abs Exp $PKG_DBDIR/$PKGNAME/+BUILD_VERSION | ${SORT} -u) + current_build_ver=$(get_build_ver | ${SED} 's|.*\$NetBSD\: ||' | ${SORT} -u) + installed_build_ver=$(${SED} 's|.*\$NetBSD\: ||' $PKG_DBDIR/$PKGNAME/+BUILD_VERSION | ${SORT} -u) if [ x"$current_build_ver" != x"$installed_build_ver" ];then msg "$PKGNAME: build-version mismatch" verbose "--current--" |