diff options
author | Sam James <sam@gentoo.org> | 2021-08-15 15:31:24 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-08-15 15:32:54 +0100 |
commit | 30cc49585b9a980245f2607ea13272e4304062af (patch) | |
tree | 7383ada4dc65d8f506b6701095b8f3b1d4f703dd /eclass | |
parent | app-i18n/ibus-m17n: new upstream release (diff) | |
download | gentoo-30cc49585b9a980245f2607ea13272e4304062af.tar.gz gentoo-30cc49585b9a980245f2607ea13272e4304062af.tar.bz2 gentoo-30cc49585b9a980245f2607ea13272e4304062af.zip |
autotools.eclass: fix EAPI 8 support
Fixes: 0d6f1fbaa1198c04f6efb5bb8be505b4394c3541
Reported-by: Joonas Niilola <juippis@gentoo.org>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/autotools.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/autotools.eclass b/eclass/autotools.eclass index 837f9e7a9aab..66d4686849db 100644 --- a/eclass/autotools.eclass +++ b/eclass/autotools.eclass @@ -131,7 +131,7 @@ RDEPEND="" if [[ ${AUTOTOOLS_AUTO_DEPEND} != "no" ]] ; then case ${EAPI} in 5|6) DEPEND=${AUTOTOOLS_DEPEND} ;; - 7) BDEPEND=${AUTOTOOLS_DEPEND} ;; + *) BDEPEND=${AUTOTOOLS_DEPEND} ;; esac fi __AUTOTOOLS_AUTO_DEPEND=${AUTOTOOLS_AUTO_DEPEND} # See top of eclass |