diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-12-26 22:23:35 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-12-26 22:23:35 +0000 |
commit | 098560145848f2bfb0049a37f57b2314f7b815a7 (patch) | |
tree | 405f9bb387eb1e2a0df7793d4aa4a3db5b8884d5 /eclass/eutils.eclass | |
parent | Run autotools. (Manifest recommit) (diff) | |
download | gentoo-2-098560145848f2bfb0049a37f57b2314f7b815a7.tar.gz gentoo-2-098560145848f2bfb0049a37f57b2314f7b815a7.tar.bz2 gentoo-2-098560145848f2bfb0049a37f57b2314f7b815a7.zip |
add export example #73200 in get_cd funcs
Diffstat (limited to 'eclass/eutils.eclass')
-rw-r--r-- | eclass/eutils.eclass | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index 983eb09627fa..5b7924170120 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.131 2004/12/26 07:09:59 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.132 2004/12/26 22:23:35 vapier Exp $ # # Author: Martin Schlemmer <azarah@gentoo.org> # @@ -1298,6 +1298,9 @@ cdrom_get_cds() { einfo "the variable CD_ROOT so that it points to the" einfo "directory containing the files." echo + einfo "For example:" + einfo "export CD_ROOT=/mnt/cdrom" + echo else einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." cdcnt=0 @@ -1322,6 +1325,9 @@ cdrom_get_cds() { einfo "and that place will be used as the same data source" einfo "for all the CDs." echo + einfo "For example:" + einfo "export CD_ROOT_1=/mnt/cdrom" + echo fi export CDROM_CURRENT_CD=0 cdrom_load_next_cd |