diff options
author | tron <tron@pkgsrc.org> | 2008-05-26 09:25:43 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2008-05-26 09:25:43 +0000 |
commit | f029152d07b6ce37d7233175073ab7a6d44d8165 (patch) | |
tree | 23044a6525ab909d770c42714a29f42e09cc81e3 /pkgtools/pkg_chk | |
parent | 3d8ef5a52d6570c7a88c64337bb6c476b78c810c (diff) | |
download | pkgsrc-f029152d07b6ce37d7233175073ab7a6d44d8165.tar.gz |
Bump version to 1.94:
Fix a bug exposed by the "set -e" improvements in NetBSD-current's
"/bin/sh" which would prevent the script from cleaning up its
temporary directory.
Change approved by David Brownlee.
Diffstat (limited to 'pkgtools/pkg_chk')
-rw-r--r-- | pkgtools/pkg_chk/Makefile | 4 | ||||
-rwxr-xr-x | pkgtools/pkg_chk/files/pkg_chk.sh | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/pkgtools/pkg_chk/Makefile b/pkgtools/pkg_chk/Makefile index d6c47e95916..d997843ace4 100644 --- a/pkgtools/pkg_chk/Makefile +++ b/pkgtools/pkg_chk/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.64 2008/05/24 19:15:36 abs Exp $ +# $NetBSD: Makefile,v 1.65 2008/05/26 09:25:43 tron Exp $ -DISTNAME= pkg_chk-1.93 +DISTNAME= pkg_chk-1.94 CATEGORIES= pkgtools MASTER_SITES= # empty DISTFILES= # empty diff --git a/pkgtools/pkg_chk/files/pkg_chk.sh b/pkgtools/pkg_chk/files/pkg_chk.sh index a27daa12106..3334bce8180 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.58 2008/05/21 20:52:31 dillo Exp $ +# $Id: pkg_chk.sh,v 1.59 2008/05/26 09:25:43 tron Exp $ # # TODO: Make -g check dependencies and tsort # TODO: Make -g list user-installed packages first, followed by commented @@ -922,8 +922,8 @@ if [ -n "$opt_u" -a -z "$FAIL_DONE" -a -f $PKGCHK_UPDATE_CONF ] ; then run_cmd "rm -f $PKGCHK_UPDATE_CONF" fi -[ -n "$MISS_DONE" ] && msg "Missing:$MISS_DONE" -[ -n "$INSTALL_DONE" ] && msg "Installed:$INSTALL_DONE" +[ -z "$MISS_DONE" ] || msg "Missing:$MISS_DONE" +[ -z "$INSTALL_DONE" ] || msg "Installed:$INSTALL_DONE" if [ -n "$FAIL_DONE" ] ; then msg "Failed:$FAIL_DONE" |