Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: eclass/
Date: Tue, 27 Nov 2012 19:36:13
Message-Id: 1354044116.0d6a5a94432ac04cf5afc93b4187c043d00e81bf.jlec@gentoo
1 commit: 0d6a5a94432ac04cf5afc93b4187c043d00e81bf
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 23 18:35:26 2012 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 27 19:21:56 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=0d6a5a94
7
8 Use clear += insteat of repeating variables
9
10 ---
11 eclass/intel-sdp.eclass | 4 ++--
12 1 files changed, 2 insertions(+), 2 deletions(-)
13
14 diff --git a/eclass/intel-sdp.eclass b/eclass/intel-sdp.eclass
15 index 3577ec8..7ccd270 100644
16 --- a/eclass/intel-sdp.eclass
17 +++ b/eclass/intel-sdp.eclass
18 @@ -166,11 +166,11 @@ intel-sdp_pkg_setup() {
19 INTEL_RPMS=""
20 for p in ${INTEL_BIN_RPMS}; do
21 for a in ${arch}; do
22 - INTEL_RPMS="${INTEL_RPMS} intel-${p}-${_INTEL_PV4}-${_INTEL_PV1}.${_INTEL_PV2}-${_INTEL_PV3}.${a}.rpm"
23 + INTEL_RPMS+=" intel-${p}-${_INTEL_PV4}-${_INTEL_PV1}.${_INTEL_PV2}-${_INTEL_PV3}.${a}.rpm"
24 done
25 done
26 for p in ${INTEL_DAT_RPMS}; do
27 - INTEL_RPMS="${INTEL_RPMS} intel-${p}-${_INTEL_PV4}-${_INTEL_PV1}.${_INTEL_PV2}-${_INTEL_PV3}.noarch.rpm"
28 + INTEL_RPMS+=" intel-${p}-${_INTEL_PV4}-${_INTEL_PV1}.${_INTEL_PV2}-${_INTEL_PV3}.noarch.rpm"
29 done
30
31 case "${EAPI:-0}" in