diff options
| author | Christian Ruppert <idl0r@gentoo.org> | 2011-09-07 14:39:10 +0200 |
|---|---|---|
| committer | Christian Ruppert <idl0r@gentoo.org> | 2011-09-07 14:39:10 +0200 |
| commit | 4a1fe09bfdff516e28aab23eea102984fedb429a (patch) | |
| tree | 115cae6e56d98d2673ead1492954005c2c9f4f04 /bin/euse | |
| parent | 92e6be628307b0643307202ba9994cab9a4dd439 (diff) | |
| download | gentoolkit-4a1fe09bfdff516e28aab23eea102984fedb429a.tar.gz | |
Add missing quotes
Diffstat (limited to 'bin/euse')
| -rwxr-xr-x | bin/euse | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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]}" |
