Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r13455 - main/branches/2.1.6/bin/ebuild-helpers
Date: Thu, 30 Apr 2009 06:56:06
Message-Id: E1LzQBg-0005ZH-Pv@stork.gentoo.org
1 Author: zmedico
2 Date: 2009-04-30 06:56:04 +0000 (Thu, 30 Apr 2009)
3 New Revision: 13455
4
5 Modified:
6 main/branches/2.1.6/bin/ebuild-helpers/ecompress
7 Log:
8 Bug #264245 - Revert i|=1 from r13242 since that breaks the array indexing code here.
9 (trunk r13279)
10
11 Modified: main/branches/2.1.6/bin/ebuild-helpers/ecompress
12 ===================================================================
13 --- main/branches/2.1.6/bin/ebuild-helpers/ecompress 2009-04-30 06:55:54 UTC (rev 13454)
14 +++ main/branches/2.1.6/bin/ebuild-helpers/ecompress 2009-04-30 06:56:04 UTC (rev 13455)
15 @@ -75,7 +75,7 @@
16 for x in "$@" ; do
17 [[ ${x##*.} =~ $mask_ext_re ]] && continue
18 filtered_args[$i]=$x
19 - ((i|=1))
20 + ((i++))
21 done
22 [ $i -eq 0 ] && exit 0
23 set -- "${filtered_args[@]}"