diff options
author | Fabian Groffen <grobian@gentoo.org> | 2013-01-13 21:54:44 +0000 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2013-01-13 21:54:44 +0000 |
commit | a15ab25bef99505d867a57488e3413b3f24df29f (patch) | |
tree | bd549212f9cb39478081e5d6e39ebb54cb8c22af /dev-lang/tk | |
parent | fix build with ocaml4, bug #451426 (diff) | |
download | gentoo-2-a15ab25bef99505d867a57488e3413b3f24df29f.tar.gz gentoo-2-a15ab25bef99505d867a57488e3413b3f24df29f.tar.bz2 gentoo-2-a15ab25bef99505d867a57488e3413b3f24df29f.zip |
Fix building on Darwin (or other platforms that have -Os in tcl.m4), bug #451604
(Portage version: 2.2.01.21580-prefix/cvs/Darwin i386, signed Manifest commit with key 0x5F75F607C5C74E89)
Diffstat (limited to 'dev-lang/tk')
-rw-r--r-- | dev-lang/tk/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lang/tk/tk-8.6.0.ebuild | 5 |
2 files changed, 7 insertions, 4 deletions
diff --git a/dev-lang/tk/ChangeLog b/dev-lang/tk/ChangeLog index 54a50637a0cf..341a09fe6fcc 100644 --- a/dev-lang/tk/ChangeLog +++ b/dev-lang/tk/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-lang/tk # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v 1.180 2013/01/11 09:34:45 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/ChangeLog,v 1.181 2013/01/13 21:54:44 grobian Exp $ + + 13 Jan 2013; Fabian Groffen <grobian@gentoo.org> tk-8.6.0.ebuild: + Fix building on Darwin (or other platforms that have -Os in tcl.m4), bug + #451604 11 Jan 2013; Justin Lecher <jlec@gentoo.org> tk-8.6.0.ebuild: Subslot to PV diff --git a/dev-lang/tk/tk-8.6.0.ebuild b/dev-lang/tk/tk-8.6.0.ebuild index 63b62dc04e1f..c5d68cef3c26 100644 --- a/dev-lang/tk/tk-8.6.0.ebuild +++ b/dev-lang/tk/tk-8.6.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.6.0.ebuild,v 1.2 2013/01/11 09:34:45 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/tk/tk-8.6.0.ebuild,v 1.3 2013/01/13 21:54:44 grobian Exp $ EAPI=5 @@ -66,8 +66,7 @@ src_prepare() { tc-export CC sed \ - -e 's:-O2::g' \ - -e 's:-O::g' \ + -e 's:-O[2s]\?::g' \ -i tcl.m4 || die eautoconf |