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/files | |
parent | 172f413acfca2b36ff28e640a426da1b2e6259b7 (diff) | |
download | pkgsrc-f9639751a97169da869eb02ab27facb90c1738b8.tar.gz |
Fix precedence botch which breaks invocation using source.
Diffstat (limited to 'pkgtools/pkg_chk/files')
-rwxr-xr-x | pkgtools/pkg_chk/files/pkg_chk.sh | 4 |
1 files changed, 2 insertions, 2 deletions
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`;; |