summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2014-05-23 07:53:22 +0000
committerMichał Górny <mgorny@gentoo.org>2014-05-23 07:53:22 +0000
commita217274896e4cfaa5df01b453b8480958d2c6011 (patch)
tree0263f290ed131086789b05a19294a3390c1cd183 /eclass/multilib-build.eclass
parentVersion bump. Removed old (diff)
downloadgentoo-2-a217274896e4cfaa5df01b453b8480958d2c6011.tar.gz
gentoo-2-a217274896e4cfaa5df01b453b8480958d2c6011.tar.bz2
gentoo-2-a217274896e4cfaa5df01b453b8480958d2c6011.zip
Add remaining potential multilib arches to header wrapping template.
Diffstat (limited to 'eclass/multilib-build.eclass')
-rw-r--r--eclass/multilib-build.eclass20
1 files changed, 19 insertions, 1 deletions
diff --git a/eclass/multilib-build.eclass b/eclass/multilib-build.eclass
index c3e48bcfdc65..c45cc9de0235 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.52 2014/05/23 07:47:39 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/eclass/multilib-build.eclass,v 1.53 2014/05/23 07:53:22 mgorny Exp $
# @ECLASS: multilib-build.eclass
# @MAINTAINER:
@@ -458,6 +458,24 @@ multilib_prepare_wrappers() {
# elif(_MIPS_SIM == _ABIO32) /* o32 */
# error "abi_mips_o32 not supported by the package."
# endif
+#elif defined(__sparc__)
+# if defined(__arch64__)
+# error "abi_sparc_64 not supported by the package."
+# else
+# error "abi_sparc_32 not supported by the package."
+# endif
+#elif defined(__s390__)
+# if defined(__s390x__)
+# error "abi_s390_64 not supported by the package."
+# else
+# error "abi_s390_32 not supported by the package."
+# endif
+#elif defined(__powerpc__)
+# if defined(__powerpc64__)
+# error "abi_ppc_64 not supported by the package."
+# else
+# error "abi_ppc_32 not supported by the package."
+# endif
#else
# error "No ABI matched, please report a bug to bugs.gentoo.org"
#endif