diff options
author | James Le Cuirot <chewi@gentoo.org> | 2017-04-16 11:08:14 +0100 |
---|---|---|
committer | James Le Cuirot <chewi@gentoo.org> | 2017-04-27 22:41:23 +0100 |
commit | ca06b496ad5148cf263d7175fed519f81b7757e2 (patch) | |
tree | 6a64685ff813fa73d388c4015ad0577e31151265 /eclass/cdrom.eclass | |
parent | cdrom.eclass: Simplify loop with seq (diff) | |
download | gentoo-ca06b496ad5148cf263d7175fed519f81b7757e2.tar.gz gentoo-ca06b496ad5148cf263d7175fed519f81b7757e2.tar.bz2 gentoo-ca06b496ad5148cf263d7175fed519f81b7757e2.zip |
cdrom.eclass: We don't know for sure how many discs will be needed
The number of discs may vary between sets and ebuilds may not call
cdrom_load_next_cd() for every argument depending on USE flags and
other conditional factors.
Diffstat (limited to 'eclass/cdrom.eclass')
-rw-r--r-- | eclass/cdrom.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass index 709338dab94c..2ef60d95c2bb 100644 --- a/eclass/cdrom.eclass +++ b/eclass/cdrom.eclass @@ -103,7 +103,7 @@ cdrom_get_cds() { echo else _cdrom_set_names - einfo "This package will need access to ${CDROM_TOTAL_CDS} cds." + einfo "This package may need access to ${CDROM_TOTAL_CDS} cds." local cdcnt for cdcnt in $(seq ${#}); do local var=CDROM_NAME_${cdcnt} |