summaryrefslogtreecommitdiff
path: root/eclass
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2014-03-31 15:32:22 +0000
committerMichał Górny <mgorny@gentoo.org>2014-03-31 15:32:22 +0000
commit4bccb807e4e46952a8dbf7c3400ce46102036064 (patch)
treea1560338b6ebd541873630c195723cd31985d6a1 /eclass
parentbump, wrt bug 465486 (diff)
downloadgentoo-2-4bccb807e4e46952a8dbf7c3400ce46102036064.tar.gz
gentoo-2-4bccb807e4e46952a8dbf7c3400ce46102036064.tar.bz2
gentoo-2-4bccb807e4e46952a8dbf7c3400ce46102036064.zip
Revert the introduction of ABI_PPC due to a lot of breakage, bug #506298 to track it.
Diffstat (limited to 'eclass')
-rw-r--r--eclass/ChangeLog6
-rw-r--r--eclass/multilib-build.eclass8
2 files changed, 6 insertions, 8 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog
index 4ff92cfca9c6..c419d309c83e 100644
--- a/eclass/ChangeLog
+++ b/eclass/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for eclass directory
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1189 2014/03/30 09:14:56 swift Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1190 2014/03/31 15:32:22 mgorny Exp $
+
+ 31 Mar 2014; Michał Górny <mgorny@gentoo.org> multilib-build.eclass:
+ Revert the introduction of ABI_PPC due to a lot of breakage, bug #506298 to
+ track it.
30 Mar 2014; Sven Vermeulen <swift@gentoo.org> selinux-policy-2.eclass:
Add support for USE triggered policy decisions
diff --git a/eclass/multilib-build.eclass b/eclass/multilib-build.eclass
index 359ad45fff4f..20cc692be4b0 100644
--- a/eclass/multilib-build.eclass
+++ b/eclass/multilib-build.eclass
@@ -1,6 +1,6 @@
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.29 2014/03/30 08:41:53 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.30 2014/03/31 15:32:22 mgorny Exp $
# @ECLASS: multilib-build.eclass
# @MAINTAINER:
@@ -38,8 +38,6 @@ _MULTILIB_FLAGS=(
abi_mips_n32:n32
abi_mips_n64:n64
abi_mips_o32:o32
- abi_ppc_32:ppc
- abi_ppc_64:ppc64
)
# @ECLASS-VARIABLE: MULTILIB_USEDEP
@@ -358,10 +356,6 @@ _EOF_
abi_flag=abi_mips_n64;;
o32)
abi_flag=abi_mips_o32;;
- ppc)
- abi_flag=abi_ppc_32;;
- ppc64)
- abi_flag=abi_ppc_64;;
*)
die "Header wrapping for ${ABI} not supported yet";;
esac