Gentoo Archives: gentoo-commits

From: Paul Varner <fuzzyray@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/gentoolkit:gentoolkit commit in: bin/
Date: Wed, 27 Jul 2011 19:02:40
Message-Id: 9ad547e5f33fce1dfb378809252d871265a82c58.fuzzyray@gentoo
1 commit: 9ad547e5f33fce1dfb378809252d871265a82c58
2 Author: Paul Varner <fuzzyray <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 27 19:01:34 2011 +0000
4 Commit: Paul Varner <fuzzyray <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 27 19:01:34 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gentoolkit.git;a=commit;h=9ad547e5
7
8 Fix missing parenthises in euse. Bug 376393
9
10 ---
11 bin/euse | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/bin/euse b/bin/euse
15 index 65fb119..be47cc9 100755
16 --- a/bin/euse
17 +++ b/bin/euse
18 @@ -508,7 +508,7 @@ get_flagstatus_helper_pkg() {
19 atoms=($(
20 echo "${atoms[@]}" | python -c "
21 from __future__ import print_function;import portage.dep as dep, sys
22 -print(' '.join(dep.match_to_list('$5-$6',sys.stdin.read().split()))"))
23 +print(' '.join(dep.match_to_list('$5-$6',sys.stdin.read().split())))"))
24 fi
25 flags=$(for atom in ${atoms[@]}; do
26 [[ -z $atom ]] && continue