diff options
author | 2005-04-06 20:20:19 +0000 | |
---|---|---|
committer | 2005-04-06 20:20:19 +0000 | |
commit | d43a458c9251353772000a9fff343419151862b7 (patch) | |
tree | b76918f7469df1def7cf668b066f3f8c556466f9 /dev-util/guile/guile-1.6.4-r1.ebuild | |
parent | added patch to fix compilation on ppc, fixes bug #86533 (diff) | |
download | gentoo-2-d43a458c9251353772000a9fff343419151862b7.tar.gz gentoo-2-d43a458c9251353772000a9fff343419151862b7.tar.bz2 gentoo-2-d43a458c9251353772000a9fff343419151862b7.zip |
make sure ppc compiles this with -O2 rather than -O3 which causes breakage. This should fix bug #85670 by Martin <monsorno@gmx.de>, which should somewhat solve bug #27716, but I leave that to Spanky and Alastair
(Portage version: 1.585-cvs)
Diffstat (limited to 'dev-util/guile/guile-1.6.4-r1.ebuild')
-rw-r--r-- | dev-util/guile/guile-1.6.4-r1.ebuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/dev-util/guile/guile-1.6.4-r1.ebuild b/dev-util/guile/guile-1.6.4-r1.ebuild index 67dd6e8ae15f..0a9f10c6dee9 100644 --- a/dev-util/guile/guile-1.6.4-r1.ebuild +++ b/dev-util/guile/guile-1.6.4-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/guile/guile-1.6.4-r1.ebuild,v 1.20 2005/01/28 11:03:43 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/guile/guile-1.6.4-r1.ebuild,v 1.21 2005/04/06 20:20:19 seemant Exp $ inherit flag-o-matic eutils libtool @@ -39,6 +39,10 @@ src_compile() { append-flags -no-cpp-precomp -Dmacosx fi + if [ "${ARCH}" = "ppc" ]; then + replace-flags -O3 -O2 + fi + econf \ --with-threads \ --with-modules || die |