diff options
author | Repository mirror & CI <repomirrorci@gentoo.org> | 2021-08-15 14:52:15 +0000 |
---|---|---|
committer | Repository mirror & CI <repomirrorci@gentoo.org> | 2021-08-15 14:52:15 +0000 |
commit | 682bd2f6d1486b6f4da59d7f69b7a3a68911e919 (patch) | |
tree | dfbf01f35bb31325cb5c797e535cb361debe110d | |
parent | 2021-08-15 14:21:31 UTC (diff) | |
parent | autotools.eclass: fix EAPI 8 support (diff) | |
download | gentoo-682bd2f6d1486b6f4da59d7f69b7a3a68911e919.tar.gz gentoo-682bd2f6d1486b6f4da59d7f69b7a3a68911e919.tar.bz2 gentoo-682bd2f6d1486b6f4da59d7f69b7a3a68911e919.zip |
Merge updates from master
-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 |