diff options
author | 2006-11-11 15:13:46 +0000 | |
---|---|---|
committer | 2006-11-11 15:13:46 +0000 | |
commit | c0c4eed1aa744493d1d8a6f7417438916bbcbd31 (patch) | |
tree | 957a08f430d2af2b847d33abdaa203d1871396af | |
parent | Stable on ppc wrt bug 154738 (diff) | |
download | historical-c0c4eed1aa744493d1d8a6f7417438916bbcbd31.tar.gz historical-c0c4eed1aa744493d1d8a6f7417438916bbcbd31.tar.bz2 historical-c0c4eed1aa744493d1d8a6f7417438916bbcbd31.zip |
Revert fix until I come up with another way to fix this
-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 abd4ffc22270..3fb5e0313466 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.260 2006/11/11 14:51:47 kanaka Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.261 2006/11/11 15:13:46 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 |