diff options
author | Marcus D. Hanwell <cryos@gentoo.org> | 2005-12-14 23:29:41 +0000 |
---|---|---|
committer | Marcus D. Hanwell <cryos@gentoo.org> | 2005-12-14 23:29:41 +0000 |
commit | 8db6011784b4aca91a5f0b1d5e8a2816da2ea8d4 (patch) | |
tree | 8188fca4c4f7de6363e2810d0d09d457d433dac0 /sci-libs/cln | |
parent | Marked ~amd64. (diff) | |
download | gentoo-2-8db6011784b4aca91a5f0b1d5e8a2816da2ea8d4.tar.gz gentoo-2-8db6011784b4aca91a5f0b1d5e8a2816da2ea8d4.tar.bz2 gentoo-2-8db6011784b4aca91a5f0b1d5e8a2816da2ea8d4.zip |
Replace -Os with -O2, closes bug 112741.
(Portage version: 2.0.53)
Diffstat (limited to 'sci-libs/cln')
-rw-r--r-- | sci-libs/cln/ChangeLog | 5 | ||||
-rw-r--r-- | sci-libs/cln/cln-1.1.10.ebuild | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/sci-libs/cln/ChangeLog b/sci-libs/cln/ChangeLog index 4666fda4f608..f924bf4c7d01 100644 --- a/sci-libs/cln/ChangeLog +++ b/sci-libs/cln/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-libs/cln # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/ChangeLog,v 1.7 2005/11/16 02:20:04 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/ChangeLog,v 1.8 2005/12/14 23:29:41 cryos Exp $ + + 14 Dec 2005; Marcus D. Hanwell <cryos@gentoo.org> cln-1.1.10.ebuild: + Replace -Os with -O2, closes bug 112741. *cln-1.1.10 (16 Nov 2005) diff --git a/sci-libs/cln/cln-1.1.10.ebuild b/sci-libs/cln/cln-1.1.10.ebuild index 4a7c395093ca..fef93b7d7923 100644 --- a/sci-libs/cln/cln-1.1.10.ebuild +++ b/sci-libs/cln/cln-1.1.10.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/sci-libs/cln/cln-1.1.10.ebuild,v 1.1 2005/11/16 02:20:04 ribosome Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/cln/cln-1.1.10.ebuild,v 1.2 2005/12/14 23:29:41 cryos Exp $ inherit flag-o-matic toolchain-funcs multilib @@ -21,6 +21,8 @@ DEPEND="dev-libs/gmp" src_compile() { # at least with gcc 2.95 and 3.1, cln won't like -O3 flag... replace-flags -O[3..9] -O2 + # It also doesn't seem to get on with -Os, bug 112741. + repace-flags -Os -O2 # and with gcc 2.95.3, it doesn't like funroll-loops as well... if [ "$( gcc-fullversion )" == "2.95.3" ]; then |