From: Joel Martin Date: Sat, 11 Nov 2006 14:51:47 +0000 (+0000) Subject: Fix syntax error in call to get_mounts in cdrom function. X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=33dd61e8b964f1354cc42558a0e24bfb2ca6dc7e;p=gentoo.git Fix syntax error in call to get_mounts in cdrom function. --- diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index fcb6a5d2be5c..abd4ffc22270 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.259 2006/11/10 15:56:58 uberlord Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.260 2006/11/11 14:51:47 kanaka Exp $ # # This eclass is for general purpose functions that most ebuilds # have to implement themselves. @@ -1413,7 +1413,7 @@ _cdrom_locate_file_on_cd() { export CDROM_SET=${i} export CDROM_MATCH=${cdset[${i}]} return - done < <(get_mounts) + done < $(get_mounts) ((++i)) done