From: Christian Ruppert Date: Wed, 7 Sep 2011 12:39:10 +0000 (+0200) Subject: Add missing quotes X-Git-Tag: gentoolkit-0.3.0.5~14 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4a1fe09bfdff516e28aab23eea102984fedb429a;p=gentoolkit.git Add missing quotes --- diff --git a/bin/euse b/bin/euse index bedba35..febe732 100755 --- a/bin/euse +++ b/bin/euse @@ -275,21 +275,21 @@ get_useflags() { # backup portdir so get_portdir() doesn't give false results later portdir_backup="${PORTDIR}" - ACTIVE_FLAGS[0]="$(reduce_incrementals ${USE})" + ACTIVE_FLAGS[0]="$(reduce_incrementals "${USE}")" USE="" for x in $(get_all_make_conf); do source "${x}" - ACTIVE_FLAGS[1]="$(reduce_incrementals ${ACTIVE_FLAGS[1]} ${USE})" + ACTIVE_FLAGS[1]="$(reduce_incrementals "${ACTIVE_FLAGS[1]}" "${USE}")" done USE="" for x in $(get_all_make_defaults); do source "${x}" ACTIVE_FLAGS[2]="${ACTIVE_FLAGS[2]} ${USE}" done - ACTIVE_FLAGS[2]="$(reduce_incrementals ${ACTIVE_FLAGS[2]})" + ACTIVE_FLAGS[2]="$(reduce_incrementals "${ACTIVE_FLAGS[2]}")" USE="" source "${MAKE_GLOBALS_PATH}" - ACTIVE_FLAGS[3]="$(reduce_incrementals ${USE})" + ACTIVE_FLAGS[3]="$(reduce_incrementals "${USE}")" # restore saved env variables USE="${ACTIVE_FLAGS[0]}"