summaryrefslogtreecommitdiff
path: root/pkgtools/pkg_chk/files/pkg_chk.sh
diff options
context:
space:
mode:
authortron <tron>2008-05-26 09:25:43 +0000
committertron <tron>2008-05-26 09:25:43 +0000
commitadbce735f6bb3468304292ffe0691cfed29e59f8 (patch)
tree23044a6525ab909d770c42714a29f42e09cc81e3 /pkgtools/pkg_chk/files/pkg_chk.sh
parent2374ca422f2eb8b46ed600c7bb21740b2865d899 (diff)
downloadpkgsrc-adbce735f6bb3468304292ffe0691cfed29e59f8.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/files/pkg_chk.sh')
-rwxr-xr-xpkgtools/pkg_chk/files/pkg_chk.sh6
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 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"