commit: 1a6eb443371bda4ef4c07ccb329d7cc7d2b47ed0
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 4 15:14:26 2018 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
CommitDate: Thu Jan 4 15:16:28 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a6eb443
eclass/multilib-build: fix ABI matching for ppc-macos
On Darwin, gcc emits __ppc__ or __ppc64__, not __powerpc__. Do
additionally allow the short variants to match, such that we can use the
wrapped packages on ppc-macos as well.
eclass/multilib-build.eclass | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/eclass/multilib-build.eclass b/eclass/multilib-build.eclass
index 7c69f86b469..6356350c43b 100644
--- a/eclass/multilib-build.eclass
+++ b/eclass/multilib-build.eclass
@@ -497,8 +497,8 @@ multilib_prepare_wrappers() {
# else
# error "abi_s390_32 not supported by the package."
# endif
-#elif defined(__powerpc__)
-# if defined(__powerpc64__)
+#elif defined(__powerpc__) || defined(__ppc__)
+# if defined(__powerpc64__) || defined(__ppc64__)
# error "abi_ppc_64 not supported by the package."
# else
# error "abi_ppc_32 not supported by the package."