diff options
author | Joel Martin <kanaka@gentoo.org> | 2006-11-11 14:51:47 +0000 |
---|---|---|
committer | Joel Martin <kanaka@gentoo.org> | 2006-11-11 14:51:47 +0000 |
commit | 33dd61e8b964f1354cc42558a0e24bfb2ca6dc7e (patch) | |
tree | 08e25f603cc1d6d94d8c8a69532d2ee9a9965a85 /eclass | |
parent | Added installation of missing documents; bug #154032. (diff) | |
download | historical-33dd61e8b964f1354cc42558a0e24bfb2ca6dc7e.tar.gz historical-33dd61e8b964f1354cc42558a0e24bfb2ca6dc7e.tar.bz2 historical-33dd61e8b964f1354cc42558a0e24bfb2ca6dc7e.zip |
Fix syntax error in call to get_mounts in cdrom function.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/eutils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
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 |