From: Mike Frysinger Date: Sun, 14 May 2006 13:40:08 +0000 (-0000) Subject: you have to quote $@ or things can break X-Git-Tag: v2.1_rc2~32 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=e167085a0f43cc4daa728bbf1ecaf7f9d27dfb29;p=portage.git you have to quote $@ or things can break svn path=/main/trunk/; revision=3351 --- 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() {