summaryrefslogtreecommitdiff
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
parentDon't skip regenerate() because leads to 'Problem resolving dependencies' fro... (diff)
downloadportage-multirepo-cf4a8d3da43c1f2bd5986bedcf22c76b1ad7fb9b.tar.gz
portage-multirepo-cf4a8d3da43c1f2bd5986bedcf22c76b1ad7fb9b.tar.bz2
portage-multirepo-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 40b846eb..3d3b9374 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
}