Gentoo Archives: gentoo-commits

From: Thomas Sachau <tommy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/portage:multilib commit in: bin/
Date: Mon, 03 Oct 2011 12:40:14
Message-Id: 2e687a0a955908341537511f215e8e62bbe2330b.tommy@gentoo
1 commit: 2e687a0a955908341537511f215e8e62bbe2330b
2 Author: Thomas Sachau <tommy <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 3 12:39:56 2011 +0000
4 Commit: Thomas Sachau <tommy <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 3 12:39:56 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/portage.git;a=commit;h=2e687a0a
7
8 Fix brackets
9
10 ---
11 bin/auto-multilib.sh | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/bin/auto-multilib.sh b/bin/auto-multilib.sh
15 index 67b53e1..b268b24 100755
16 --- a/bin/auto-multilib.sh
17 +++ b/bin/auto-multilib.sh
18 @@ -284,7 +284,7 @@ _finalize_abi_install() {
19 noabi+=( ! -name '*-'${i} )
20 done
21 if [[ ${MULTILIB_BINARIES} == *${CATEGORY}/${PN}* ]]; then
22 - for i in $(find "${D}"usr/bin/ "${D}"usr/sbin "${D}"bin "${D}"sbin -type f ${noabi[@]}) ); do
23 + for i in $(find "${D}"usr/bin/ "${D}"usr/sbin "${D}"bin "${D}"sbin -type f ${noabi[@]}); do
24 prep_ml_binaries "${i}"
25 done
26 fi