diff options
Diffstat (limited to 'revdep')
| -rwxr-xr-x | revdep | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -46,7 +46,7 @@ while read -r line; do if [ "$verbose" ]; then echo " $ownby: $line (requires $i)" else - echo "$p" | tr ' ' '\n' | grep -xq $ownby || { + [ "$(echo "$p" | tr ' ' '\n' | grep -x $ownby)" ] || { echo $ownby p="$p $ownby" } |