diff options
author | Kent Fredric <kentfredric@gmail.com> | 2016-04-11 16:23:15 +1200 |
---|---|---|
committer | Kent Fredric <kentnl@gentoo.org> | 2017-09-17 12:06:56 +1200 |
commit | e9d6b69f4cd4477519dff1315706bd8fb2569a06 (patch) | |
tree | 1b9f8a44c499588729d64e481d1d6e8406acf78a /eclass | |
parent | perl-functions.eclass: Import alternatives into perl-functions (diff) | |
download | perl-overlay-e9d6b69f4cd4477519dff1315706bd8fb2569a06.tar.gz perl-overlay-e9d6b69f4cd4477519dff1315706bd8fb2569a06.tar.bz2 perl-overlay-e9d6b69f4cd4477519dff1315706bd8fb2569a06.zip |
perl-functions.eclass: Add EAPI6 to support list
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/perl-functions.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/perl-functions.eclass b/eclass/perl-functions.eclass index 6ae34f014..9dc54daf1 100644 --- a/eclass/perl-functions.eclass +++ b/eclass/perl-functions.eclass @@ -18,8 +18,10 @@ [[ ${CATEGORY} == "perl-core" ]] && inherit alternatives case "${EAPI:-0}" in - 5) ;; - *) die "EAPI=${EAPI} is not supported by perl-functions.eclass" + 5|6) + ;; + *) + die "EAPI=${EAPI} is not supported by perl-functions.eclass" ;; esac |