summaryrefslogtreecommitdiff
path: root/bin/euse
diff options
context:
space:
mode:
authorChristian Ruppert <idl0r@gentoo.org>2011-09-07 14:39:10 +0200
committerChristian Ruppert <idl0r@gentoo.org>2011-09-07 14:39:10 +0200
commit4a1fe09bfdff516e28aab23eea102984fedb429a (patch)
tree115cae6e56d98d2673ead1492954005c2c9f4f04 /bin/euse
parent92e6be628307b0643307202ba9994cab9a4dd439 (diff)
downloadgentoolkit-4a1fe09bfdff516e28aab23eea102984fedb429a.tar.gz
Add missing quotes
Diffstat (limited to 'bin/euse')
-rwxr-xr-xbin/euse8
1 files changed, 4 insertions, 4 deletions
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]}"