diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-05-03 11:35:46 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-05-07 09:43:24 +0200 |
commit | bf9ed46ff64732ceb2025af9c200beba1a7cb0e8 (patch) | |
tree | e1cb159921f0f7548758269507e0603ff278027b /eclass | |
parent | dev-games/newton: Remove unnecessary use of unpacker (diff) | |
download | gentoo-bf9ed46ff64732ceb2025af9c200beba1a7cb0e8.tar.gz gentoo-bf9ed46ff64732ceb2025af9c200beba1a7cb0e8.tar.bz2 gentoo-bf9ed46ff64732ceb2025af9c200beba1a7cb0e8.zip |
bash-completion-r1.eclass: Allow EAPI 7 (no changes)
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/bash-completion-r1.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/bash-completion-r1.eclass b/eclass/bash-completion-r1.eclass index eb2dfce4c7fe..eff5e68c437e 100644 --- a/eclass/bash-completion-r1.eclass +++ b/eclass/bash-completion-r1.eclass @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # @ECLASS: bash-completion-r1.eclass @@ -25,7 +25,7 @@ inherit toolchain-funcs case ${EAPI:-0} in - 0|1|2|3|4|5|6) ;; + 0|1|2|3|4|5|6|7) ;; *) die "EAPI ${EAPI} unsupported (yet)." esac |