diff options
author | Andreas K. Huettel (dilfridge) <dilfridge@gentoo.org> | 2015-11-28 22:03:28 +0100 |
---|---|---|
committer | Andreas K. Huettel (dilfridge) <dilfridge@gentoo.org> | 2015-12-03 21:20:16 +0100 |
commit | 945c4fb8059783d4b3bf1b467eb48430b883f3bc (patch) | |
tree | 00ced7362e56762d84eaf2352c122526e1ff0f5e /eclass/perl-functions.eclass | |
parent | perl-app.eclass: die in EAPI=6, let's get rid of this silly stub (diff) | |
download | gentoo-945c4fb8059783d4b3bf1b467eb48430b883f3bc.tar.gz gentoo-945c4fb8059783d4b3bf1b467eb48430b883f3bc.tar.bz2 gentoo-945c4fb8059783d4b3bf1b467eb48430b883f3bc.zip |
perl-functions.eclass: should 'just work' in EAPI=6
Diffstat (limited to 'eclass/perl-functions.eclass')
-rw-r--r-- | eclass/perl-functions.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/perl-functions.eclass b/eclass/perl-functions.eclass index 7ba47d15f8bc..c38ed6c4a651 100644 --- a/eclass/perl-functions.eclass +++ b/eclass/perl-functions.eclass @@ -18,7 +18,7 @@ [[ ${CATEGORY} == "perl-core" ]] && inherit alternatives case "${EAPI:-0}" in - 5) + 5|6) ;; *) die "EAPI=${EAPI} is not supported by perl-functions.eclass" |