From: Ulrich Müller Date: Wed, 29 Dec 2010 18:11:21 +0000 (-0800) Subject: doins: use read -r X-Git-Tag: v2.2.0_alpha11~29 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f4e2a596a3b4bfb22d7910e7eb3fff4a5c31fad5;p=portage.git doins: use read -r This will fix bug #350045. --- diff --git a/bin/ebuild-helpers/doins b/bin/ebuild-helpers/doins index bbc4e97b6..51cac06b4 100755 --- a/bin/ebuild-helpers/doins +++ b/bin/ebuild-helpers/doins @@ -64,7 +64,7 @@ _doins() { _xdoins() { local -i failed=0 - while read -d $'\0' x ; do + while read -r -d $'\0' x ; do _doins "$x" "${x%/*}" ((failed|=$?)) done