summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-05-14 13:40:08 +0000
committerMike Frysinger <vapier@gentoo.org>2006-05-14 13:40:08 +0000
commite167085a0f43cc4daa728bbf1ecaf7f9d27dfb29 (patch)
treecca88b39e0f2dd70c40bbca1ccc02692ccf9a487 /bin/isolated-functions.sh
parentUse iteritems() instead of items() because an iterator uses less memory. (diff)
downloadportage-multirepo-e167085a0f43cc4daa728bbf1ecaf7f9d27dfb29.tar.gz
portage-multirepo-e167085a0f43cc4daa728bbf1ecaf7f9d27dfb29.tar.bz2
portage-multirepo-e167085a0f43cc4daa728bbf1ecaf7f9d27dfb29.zip
you have to quote $@ or things can break
svn path=/main/trunk/; revision=3351
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 03cba814..be054d4e 100644
--- a/bin/isolated-functions.sh
+++ b/bin/isolated-functions.sh
@@ -4,7 +4,7 @@
# Internal logging function, don't use this in ebuilds
vecho() {
- [[ ${PORTAGE_QUIET} == "1" ]] || echo ${@}
+ [[ ${PORTAGE_QUIET} == "1" ]] || echo "$@"
}
elog_base() {