diff options
-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" |