Gentoo Archives: gentoo-commits

From: Christian Ruppert <idl0r@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: bin/
Date: Wed, 07 Sep 2011 12:40:45
Message-Id: 4a1fe09bfdff516e28aab23eea102984fedb429a.idl0r@gentoo
1 commit: 4a1fe09bfdff516e28aab23eea102984fedb429a
2 Author: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 7 12:39:10 2011 +0000
4 Commit: Christian Ruppert <idl0r <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 7 12:39:10 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoolkit.git;a=commit;h=4a1fe09b
7
8 Add missing quotes
9
10 ---
11 bin/euse | 8 ++++----
12 1 files changed, 4 insertions(+), 4 deletions(-)
13
14 diff --git a/bin/euse b/bin/euse
15 index bedba35..febe732 100755
16 --- a/bin/euse
17 +++ b/bin/euse
18 @@ -275,21 +275,21 @@ get_useflags() {
19 # backup portdir so get_portdir() doesn't give false results later
20 portdir_backup="${PORTDIR}"
21
22 - ACTIVE_FLAGS[0]="$(reduce_incrementals ${USE})"
23 + ACTIVE_FLAGS[0]="$(reduce_incrementals "${USE}")"
24 USE=""
25 for x in $(get_all_make_conf); do
26 source "${x}"
27 - ACTIVE_FLAGS[1]="$(reduce_incrementals ${ACTIVE_FLAGS[1]} ${USE})"
28 + ACTIVE_FLAGS[1]="$(reduce_incrementals "${ACTIVE_FLAGS[1]}" "${USE}")"
29 done
30 USE=""
31 for x in $(get_all_make_defaults); do
32 source "${x}"
33 ACTIVE_FLAGS[2]="${ACTIVE_FLAGS[2]} ${USE}"
34 done
35 - ACTIVE_FLAGS[2]="$(reduce_incrementals ${ACTIVE_FLAGS[2]})"
36 + ACTIVE_FLAGS[2]="$(reduce_incrementals "${ACTIVE_FLAGS[2]}")"
37 USE=""
38 source "${MAKE_GLOBALS_PATH}"
39 - ACTIVE_FLAGS[3]="$(reduce_incrementals ${USE})"
40 + ACTIVE_FLAGS[3]="$(reduce_incrementals "${USE}")"
41
42 # restore saved env variables
43 USE="${ACTIVE_FLAGS[0]}"