diff options
author | 2013-05-14 17:33:08 +0000 | |
---|---|---|
committer | 2013-05-14 17:33:08 +0000 | |
commit | 2486f2d19d2b639cc057f8d5e308fa6504490379 (patch) | |
tree | bf88ac9375ca6e97b2e18b841c788e8ea27f7553 /eclass/autotools-multilib.eclass | |
parent | Linux patch 3.2.45. Removal of affected versions 3.0.74, 3.2.41, 3.2.42, 3.2.... (diff) | |
download | gentoo-2-2486f2d19d2b639cc057f8d5e308fa6504490379.tar.gz gentoo-2-2486f2d19d2b639cc057f8d5e308fa6504490379.tar.bz2 gentoo-2-2486f2d19d2b639cc057f8d5e308fa6504490379.zip |
Enable EAPI=4 on multilib eclasses.
Diffstat (limited to 'eclass/autotools-multilib.eclass')
-rw-r--r-- | eclass/autotools-multilib.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/autotools-multilib.eclass b/eclass/autotools-multilib.eclass index 5ca81126ab93..ab06e9122003 100644 --- a/eclass/autotools-multilib.eclass +++ b/eclass/autotools-multilib.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.15 2013/04/07 16:56:14 mgorny Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.16 2013/05/14 17:33:08 mgorny Exp $ # @ECLASS: autotools-multilib.eclass # @MAINTAINER: @@ -19,9 +19,9 @@ # enabled. Thus, it is impossible to use AUTOTOOLS_IN_SOURCE_BUILD with # it. -# EAPI=5 is required for meaningful MULTILIB_USEDEP. +# EAPI=4 is required for meaningful MULTILIB_USEDEP. case ${EAPI:-0} in - 5) ;; + 4|5) ;; *) die "EAPI=${EAPI} is not supported" ;; esac |