Gentoo Archives: gentoo-dev

From: Ulrich Mueller <ulm@g.o>
To: gentoo-dev@l.g.o
Cc: hasufell@g.o, python@g.o, "Michał Górny" <mgorny@g.o>
Subject: Re: [gentoo-dev] [PATCH 1/7] multibuild: introduce a generic framework for custom phase functions.
Date: Sun, 10 Mar 2013 12:16:56
Message-Id: 20796.31150.637490.654018@a1i15.kph.uni-mainz.de
In Reply to: Re: [gentoo-dev] [PATCH 1/7] multibuild: introduce a generic framework for custom phase functions. by Ulrich Mueller
1 >>>>> On Sun, 10 Mar 2013, Ulrich Mueller wrote:
2
3 >>>>> On Sun, 10 Mar 2013, Micha³ Górny wrote:
4 >> +DEPEND=">=app-shells/bash-4.2"
5 >> +
6
7 > Why is this needed?
8
9 Seems it's because of this:
10
11 >> + declare -g -A _MULTIBUILD_EXPORTED_PHASES || die
12 >> + local p
13 >> + for p; do
14 >> + _MULTIBUILD_EXPORTED_PHASES[${p}]=${ECLASS}_${p}
15 >> + done
16
17 Associative arrays are not supported in bash 3.2, so they must not be
18 used in EAPIs 0 to 5.
19
20 Ulrich

Replies