diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-05-14 13:40:08 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-05-14 13:40:08 +0000 |
commit | e167085a0f43cc4daa728bbf1ecaf7f9d27dfb29 (patch) | |
tree | cca88b39e0f2dd70c40bbca1ccc02692ccf9a487 | |
parent | 90cb8d2429ff725fd1011af5df244bd0d8d30939 (diff) | |
download | portage-e167085a0f43cc4daa728bbf1ecaf7f9d27dfb29.tar.gz portage-e167085a0f43cc4daa728bbf1ecaf7f9d27dfb29.tar.bz2 portage-e167085a0f43cc4daa728bbf1ecaf7f9d27dfb29.zip |
you have to quote $@ or things can break
svn path=/main/trunk/; revision=3351
-rw-r--r-- | bin/isolated-functions.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/isolated-functions.sh b/bin/isolated-functions.sh index 03cba8143..be054d4ee 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() { |