summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2013-01-26 11:38:43 +0000
committerMichał Górny <mgorny@gentoo.org>2013-01-26 11:38:43 +0000
commit25a83a9989cbcaadd91844bc9f56e9db2808a75a (patch)
treec714b52471cc3e55e67df81685ea380683f141a5 /eclass
parentSupport running commands in parallel and use it to run configure scripts. (diff)
downloadgentoo-2-25a83a9989cbcaadd91844bc9f56e9db2808a75a.tar.gz
gentoo-2-25a83a9989cbcaadd91844bc9f56e9db2808a75a.tar.bz2
gentoo-2-25a83a9989cbcaadd91844bc9f56e9db2808a75a.zip
Require EAPI=5 to make sure everything works predictably.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog5
-rw-r--r--eclass/autotools-multilib.eclass5
2 files changed, 7 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 22867474ca73..0761a529ca85 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for eclass directory
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.638 2013/01/26 11:35:38 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.639 2013/01/26 11:38:43 mgorny Exp $
+
+ 26 Jan 2013; Michał Górny <mgorny@gentoo.org> autotools-multilib.eclass:
+ Require EAPI=5 to make sure everything works predictably.
26 Jan 2013; Michał Górny <mgorny@gentoo.org> autotools-multilib.eclass:
Support running commands in parallel and use it to run configure scripts.
diff --git a/eclass/autotools-multilib.eclass b/eclass/autotools-multilib.eclass
index d09701e4521e..e36d7f448c05 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.5 2013/01/26 11:35:38 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/autotools-multilib.eclass,v 1.6 2013/01/26 11:38:43 mgorny Exp $
# @ECLASS: autotools-multilib.eclass
# @MAINTAINER:
@@ -19,8 +19,9 @@
# enabled. Thus, it is impossible to use AUTOTOOLS_IN_SOURCE_BUILD with
# it.
+# EAPI=5 is required for meaningful MULTILIB_USEDEP.
case ${EAPI:-0} in
- 2|3|4|5) ;;
+ 5) ;;
*) die "EAPI=${EAPI} is not supported" ;;
esac