From 807e30917391f4b593357522cf602f632be99fab Mon Sep 17 00:00:00 2001 From: josch Date: Thu, 26 Jun 2014 00:04:45 +0200 Subject: [PATCH] correct quoting --- findunusedbd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/findunusedbd.sh b/findunusedbd.sh index 4c88d9b..4dee551 100755 --- a/findunusedbd.sh +++ b/findunusedbd.sh @@ -30,7 +30,7 @@ if [ "$#" -eq 1 ]; then while read namever; do name=`echo $namever | cut -d '=' -f 1 | cut -d ':' -f 1` # FIXME: the following cannot handle dependencies on virtual packages - if [ -z `comm -12 "${tmpdir}/accessed.log" "${tmpdir}/$namever"` ] \ + if [ -z "`comm -12 "${tmpdir}/accessed.log" "${tmpdir}/$namever"`" ] \ && grep --line-regexp "$name" "${tmpdir}/sbuild-dummy-depends" > /dev/null; then echo $namever fi