On 18:58 Sun 04 Nov , Caleb Tennis (caleb) wrote:
> 1.1 sys-libs/db/db-4.6.21.ebuild
>
> file :
> http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/db/db-4.6.21.ebuild?rev=1.1&view=markup
> plain:
> http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/db/db-4.6.21.ebuild?rev=1.1&content-type=text/plain
> for (( i=1 ; i<=${PATCHNO} ; i++ )) ; do
> for (( i=1 ; i<=${PATCHNO} ; i++ ))
It reads strangely to mix ways of referencing variables like this. If
it's gonna be a C-style loop, then go all out:
for (( i=1 ; i<=PATCHNO ; i++ ))
Thanks,
Donnie
--
[EMAIL PROTECTED] mailing list