summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2017-03-11 16:06:24 +0100
committerMichał Górny <mgorny@gentoo.org>2017-03-18 08:33:17 +0100
commit2b79642c8e57709b387c4297f4b21fd22cdde00c (patch)
tree4c9b1b55c35a0c5ca8d53ec35b1ad90b439592eb /eclass
parentepatch.eclass: Split epatch* logic from eutils (diff)
downloadgentoo-2b79642c8e57709b387c4297f4b21fd22cdde00c.tar.gz
gentoo-2b79642c8e57709b387c4297f4b21fd22cdde00c.tar.bz2
gentoo-2b79642c8e57709b387c4297f4b21fd22cdde00c.zip
eutils.eclass: Kill multilib inherit for EAPI 7
The multilib.eclass seems not to be used by any eutils function. Therefore, disable the inherit for EAPI 7. It is being preserved for older EAPIs not to break ebuilds inheriting this eclass and using multilib.eclass functions implicitly.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/eutils.eclass4
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass
index 724a310b3000..e036001dc5e1 100644
--- a/eclass/eutils.eclass
+++ b/eclass/eutils.eclass
@@ -17,12 +17,12 @@
if [[ -z ${_EUTILS_ECLASS} ]]; then
_EUTILS_ECLASS=1
-inherit multilib toolchain-funcs
+inherit toolchain-funcs
# implicitly inherited (now split) eclasses
case ${EAPI:-0} in
0|1|2|3|4|5|6)
- inherit epatch estack
+ inherit epatch estack multilib
;;
esac