commit: d592d2d55fe04a8e8c1aadc3bbb2efb1ff565ae8
Author: James Le Cuirot <chewi <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 16 10:01:46 2017 +0000
Commit: James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Thu Apr 27 21:41:22 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d592d2d5
cdrom.eclass: Remove ye olde Submount check
Submount was last-rited in 2007 and was already dead long before that.
eclass/cdrom.eclass | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass
index 5e1fc23edfd..123be696637 100644
--- a/eclass/cdrom.eclass
+++ b/eclass/cdrom.eclass
@@ -181,9 +181,7 @@ _cdrom_locate_file_on_cd() {
while [[ -n ${cdset[${i}]} ]] ; do
local point= node= fs= foo=
while read point node fs foo ; do
- [[ " cd9660 iso9660 udf " != *" ${fs} "* ]] && \
- ! [[ ${fs} == "subfs" && ",${opts}," ==
*",fs=cdfss,"* ]] \
- && continue
+ [[ " cd9660 iso9660 udf " != *" ${fs} "* ]] &&
continue
point=${point//\040/ }
export CDROM_MATCH=$(_cdrom_glob_match
"${point}" "${cdset[${i}]}")
[[ -z ${CDROM_MATCH} ]] && continue