From a708ed788e27a3e1619bec0dc2f08d8a8eb077db Mon Sep 17 00:00:00 2001 From: James Le Cuirot Date: Sat, 13 May 2017 16:44:14 +0100 Subject: cdrom.eclass: Fix matching of entries with trailing /, bug #618344 --- eclass/cdrom.eclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'eclass/cdrom.eclass') diff --git a/eclass/cdrom.eclass b/eclass/cdrom.eclass index 2270bbe30cff..47e2c6342e06 100644 --- a/eclass/cdrom.eclass +++ b/eclass/cdrom.eclass @@ -281,7 +281,7 @@ _cdrom_glob_match() { shopt -s extglob nocaseglob nullglob || die # The first person to make this work without an eval wins a # cookie. It breaks without it when spaces are present. - eval "ARRAY=( ${p} )" + eval "ARRAY=( ${p%\?()} )" echo ${ARRAY[0]} ) } -- cgit v1.2.3-65-gdbad