summaryrefslogtreecommitdiffstats
path: root/bin/isolated-functions.sh
diff options
context:
space:
mode:
authorSimon Stelling <blubb@gentoo.org>2006-05-01 18:34:37 +0000
committerSimon Stelling <blubb@gentoo.org>2006-05-01 18:34:37 +0000
commitcf4a8d3da43c1f2bd5986bedcf22c76b1ad7fb9b (patch)
treefcc31dde27d8fa323d448a4f790a261620c027cf /bin/isolated-functions.sh
parent7bea59f8a8f70be0ffdcd4b920f43ff15a9b550b (diff)
downloadportage-cf4a8d3da43c1f2bd5986bedcf22c76b1ad7fb9b.tar.gz
portage-cf4a8d3da43c1f2bd5986bedcf22c76b1ad7fb9b.tar.bz2
portage-cf4a8d3da43c1f2bd5986bedcf22c76b1ad7fb9b.zip
allow escaping in elog_base() to fix bug 131913
svn path=/main/trunk/; revision=3294
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 40b846eb0..3d3b93741 100644
--- a/bin/isolated-functions.sh
+++ b/bin/isolated-functions.sh
@@ -16,7 +16,7 @@ elog_base() {
return 1
;;
esac
- echo "$*" >> ${T}/logging/${EBUILD_PHASE:-other}.${messagetype}
+ echo -e "$*" >> ${T}/logging/${EBUILD_PHASE:-other}.${messagetype}
return 0
}