summaryrefslogtreecommitdiffstats
path: root/bin/isolated-functions.sh
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-10-05 01:41:08 +0000
committerZac Medico <zmedico@gentoo.org>2007-10-05 01:41:08 +0000
commitb212fccaff836699d1177e1295a401f6e7c7c071 (patch)
treef19ca3f1912c0308f1045f8852ede473625c77ac /bin/isolated-functions.sh
parentf845c6114a46bc02a0415609881cb213c74c8556 (diff)
downloadportage-b212fccaff836699d1177e1295a401f6e7c7c071.tar.gz
portage-b212fccaff836699d1177e1295a401f6e7c7c071.tar.bz2
portage-b212fccaff836699d1177e1295a401f6e7c7c071.zip
Fix quoting as reported by Drac in bug 194169 (trunk r7877:7879)
svn path=/main/branches/2.1.2/; revision=7921
Diffstat (limited to 'bin/isolated-functions.sh')
-rw-r--r--bin/isolated-functions.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh
index 01fbbf272..bb119b98e 100644
--- a/bin/isolated-functions.sh
+++ b/bin/isolated-functions.sh
@@ -24,7 +24,7 @@ elog_base() {
return 1
;;
esac
- echo -e "$*" >> ${T}/logging/${EBUILD_PHASE:-other}.${messagetype}
+ echo -e "$*" >> "${T}/logging/${EBUILD_PHASE:-other}.${messagetype}"
return 0
}