From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1OXT9T-0007oC-1U for garchives@archives.gentoo.org; Sat, 10 Jul 2010 06:03:03 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1860AE0B8D; Sat, 10 Jul 2010 06:03:01 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id F059DE0B8D for ; Sat, 10 Jul 2010 06:03:00 +0000 (UTC) Received: from corvid.gentoo.org (corvid.gentoo.org [208.92.234.79]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A11651B4223 for ; Sat, 10 Jul 2010 06:03:00 +0000 (UTC) Received: by corvid.gentoo.org (Postfix, from userid 543) id DDC052CE14; Sat, 10 Jul 2010 06:02:59 +0000 (UTC) From: "Doug Goldstein (cardoe)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, cardoe@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in eclass: eutils.eclass X-VCS-Repository: gentoo-x86 X-VCS-Files: eutils.eclass X-VCS-Directories: eclass X-VCS-Committer: cardoe X-VCS-Committer-Name: Doug Goldstein Content-Type: text/plain; charset=utf8 Message-Id: <20100710060259.DDC052CE14@corvid.gentoo.org> Date: Sat, 10 Jul 2010 06:02:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 52fb8678-2a29-4c5e-b142-92658e504c8d X-Archives-Hash: bcf52431135fcfac3721bc4d12cd83f9 cardoe 10/07/10 06:02:59 Modified: eutils.eclass Log: Fix bug in cdrom_get_cds() identified by Jared when= using multiple CDs. bug #327549. Also found a minor typo and fixed that. Revision Changes Path 1.346 eclass/eutils.eclass file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.ecla= ss?rev=3D1.346&view=3Dmarkup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.ecla= ss?rev=3D1.346&content-type=3Dtext/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/eclass/eutils.ecla= ss?r1=3D1.345&r2=3D1.346 Index: eutils.eclass =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v retrieving revision 1.345 retrieving revision 1.346 diff -u -r1.345 -r1.346 --- eutils.eclass 23 Jun 2010 21:24:50 -0000 1.345 +++ eutils.eclass 10 Jul 2010 06:02:59 -0000 1.346 @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.345 2010/06/= 23 21:24:50 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.346 2010/07/= 10 06:02:59 cardoe Exp $ =20 # @ECLASS: eutils.eclass # @MAINTAINER: @@ -1512,7 +1512,7 @@ export CDROM_SET=3D-1 for f in ${CDROM_CHECK_1//:/ } ; do ((++CDROM_SET)) - [[ -e ${CD_ROOT}/${f} ]] && break + [[ -e ${CDROM_ROOT}/${f} ]] && break done export CDROM_MATCH=3D${f} return @@ -1552,7 +1552,7 @@ einfo "If you do not have the CDs, but have the data files" einfo "mounted somewhere on your filesystem, just export" einfo "the following variables so they point to the right place:" - einfon "" + einfo "" cdcnt=3D0 while [[ ${cdcnt} -lt ${CDROM_TOTAL_CDS} ]] ; do ((++cdcnt))