diff options
author | dillo <dillo@pkgsrc.org> | 2005-12-13 15:26:05 +0000 |
---|---|---|
committer | dillo <dillo@pkgsrc.org> | 2005-12-13 15:26:05 +0000 |
commit | f9639751a97169da869eb02ab27facb90c1738b8 (patch) | |
tree | 10e3cf106dac0a12735048a95afb34e4c2100a30 /pkgtools/pkg_chk | |
parent | 172f413acfca2b36ff28e640a426da1b2e6259b7 (diff) | |
download | pkgsrc-f9639751a97169da869eb02ab27facb90c1738b8.tar.gz |
Fix precedence botch which breaks invocation using source.
Diffstat (limited to 'pkgtools/pkg_chk')
-rw-r--r-- | pkgtools/pkg_chk/Makefile | 4 | ||||
-rwxr-xr-x | pkgtools/pkg_chk/files/pkg_chk.sh | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/pkgtools/pkg_chk/Makefile b/pkgtools/pkg_chk/Makefile index 3ce8c7cb6f0..4ffd6a1acf4 100644 --- a/pkgtools/pkg_chk/Makefile +++ b/pkgtools/pkg_chk/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.21 2005/12/12 13:36:37 dillo Exp $ +# $NetBSD: Makefile,v 1.22 2005/12/13 15:26:05 dillo Exp $ -DISTNAME= pkg_chk-1.63 +DISTNAME= pkg_chk-1.63.1 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 dd718d16931..84657cdb683 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.22 2005/12/12 13:36:38 dillo Exp $ +# $Id: pkg_chk.sh,v 1.23 2005/12/13 15:26:05 dillo Exp $ # # TODO: Make -g check dependencies and tsort # TODO: Variation of -g which only lists top level packages @@ -694,7 +694,7 @@ if [ -n "$opt_N" ]; then done fi -if [ -n "$opt_b" -o -n "$opt_S" -a -z "$opt_s" ] ; then +if [ \( -n "$opt_b" -o -n "$opt_S" \) -a -z "$opt_s" ] ; then case $PACKAGES in http://*|ftp://*) PKGDB=`ftp -o - $PACKAGES/$SUMMARY_FILE`;; |