summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2010-12-29 10:11:21 -0800
committerZac Medico <zmedico@gentoo.org>2010-12-30 22:16:38 -0800
commit1d941aed8d1fee3ae3592ada2f87b6b701d8de8c (patch)
treeb6ed1d64b861919f234533653a33f2bedf42cbfd /bin
parent760a08651b334172e69ce7e994593ae8460e4463 (diff)
downloadportage-1d941aed8d1fee3ae3592ada2f87b6b701d8de8c.tar.gz
portage-1d941aed8d1fee3ae3592ada2f87b6b701d8de8c.tar.bz2
portage-1d941aed8d1fee3ae3592ada2f87b6b701d8de8c.zip
doins: use read -r
This will fix bug #350045.
Diffstat (limited to 'bin')
-rwxr-xr-xbin/ebuild-helpers/doins2
1 files changed, 1 insertions, 1 deletions
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