diff options
author | Mike Gilbert <floppym@gentoo.org> | 2017-12-31 10:10:41 -0500 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2018-01-01 21:44:27 -0500 |
commit | 82ed7a06c1dd76692ff05b54edc9fdbf712659a0 (patch) | |
tree | 780c9c4ac764750ca14cbe9d136cc7d0cd10e5db /eclass/tmpfiles.eclass | |
parent | sys-libs/libcap: declare BUILD_CC as local (diff) | |
download | gentoo-82ed7a06c1dd76692ff05b54edc9fdbf712659a0.tar.gz gentoo-82ed7a06c1dd76692ff05b54edc9fdbf712659a0.tar.bz2 gentoo-82ed7a06c1dd76692ff05b54edc9fdbf712659a0.zip |
tmpfiles.eclass: allow EAPI 5 usage
Diffstat (limited to 'eclass/tmpfiles.eclass')
-rw-r--r-- | eclass/tmpfiles.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/tmpfiles.eclass b/eclass/tmpfiles.eclass index 6a461d4df859..746225784128 100644 --- a/eclass/tmpfiles.eclass +++ b/eclass/tmpfiles.eclass @@ -55,7 +55,7 @@ if [[ -z ${TMPFILES_ECLASS} ]]; then TMPFILES_ECLASS=1 case "${EAPI}" in -6) ;; +5|6) ;; *) die "API is undefined for EAPI ${EAPI}" ;; esac |