summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-08-15 15:31:24 +0100
committerSam James <sam@gentoo.org>2021-08-15 15:32:54 +0100
commit30cc49585b9a980245f2607ea13272e4304062af (patch)
tree7383ada4dc65d8f506b6701095b8f3b1d4f703dd /eclass
parentapp-i18n/ibus-m17n: new upstream release (diff)
downloadgentoo-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.eclass2
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