diff options
author | Gregorio Guidi <greg_g@gentoo.org> | 2005-02-17 14:58:30 +0000 |
---|---|---|
committer | Gregorio Guidi <greg_g@gentoo.org> | 2005-02-17 14:58:30 +0000 |
commit | 96865b30d0cc577942dca358f2dbf1b7baf92a6e (patch) | |
tree | 49eac0cbe27a9c6da301f58281783d38fc1796fe /eclass | |
parent | Stable on hppa. (diff) | |
download | historical-96865b30d0cc577942dca358f2dbf1b7baf92a6e.tar.gz historical-96865b30d0cc577942dca358f2dbf1b7baf92a6e.tar.bz2 historical-96865b30d0cc577942dca358f2dbf1b7baf92a6e.zip |
Fix gcc visibility problem for ppc, too.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index 58604acca4d5..423d683585ae 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.114 2005/02/16 19:59:04 carlo Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.115 2005/02/17 14:58:30 greg_g Exp $ # # Author Dan Armak <danarmak@gentoo.org> # @@ -64,9 +64,9 @@ kde_src_unpack() { fi # temp fix for bug #78720, until the real bug in gcc gets fixed - # briefly, -fvisibility-inlines-hidden is broken on amd64 + # briefly, -fvisibility-inlines-hidden is broken on amd64 and ppc # this only applies to kde 3.4. the grep prevents us from removing configure unnecessarily. - if useq amd64; then + if useq amd64 || useq ppc; then if grep -- '-fvisibility=hidden -fvisibility-inlines-hidden' admin/acinclude.m4.in >/dev/null; then sed -i -e 's:-fvisibility=hidden -fvisibility-inlines-hidden:-fvisibility=hidden:' admin/acinclude.m4.in rm -f configure |