From: Jason Stubbs Date: Sat, 15 Oct 2005 03:58:50 +0000 (-0000) Subject: Added missing quotes to stat_perms area of ebuild.sh (#93293) X-Git-Tag: v2.0.53_rc6~9 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7fe1c009eb0e897fa0354a70a2eba9dd75a7c1e6;p=portage.git Added missing quotes to stat_perms area of ebuild.sh (#93293) svn path=/main/branches/2.0/; revision=2132 --- diff --git a/bin/ebuild.sh b/bin/ebuild.sh index 6cf401493..666a79dd6 100755 --- a/bin/ebuild.sh +++ b/bin/ebuild.sh @@ -1150,7 +1150,7 @@ dyn_install() { if [ -L "${file}" ]; then lchown ${PORTAGE_INST_UID} "${file}" else - s=$(stat_perms $file) + s=$(stat_perms "$file") if [ -z "${s}" ]; then ewarn "failed stat_perm'ing $file. User intervention during install isn't wise..." continue @@ -1166,7 +1166,7 @@ dyn_install() { count=0 find "${D}/" -group portage | while read file; do count=$(( $count + 1 )) - if [ -L ${file} ]; then + if [ -L "${file}" ]; then lchgrp ${PORTAGE_INST_GID} "${file}" else s=$(stat_perms "$file")