diff options
author | 2011-04-01 22:25:45 +0000 | |
---|---|---|
committer | 2011-04-01 22:25:45 +0000 | |
commit | c5ca77b562580b865d7eaa6dc5dd85570bbf188c (patch) | |
tree | 04d391b2a96f2d51d14c7721dfb18b150be068ca /dev-db/tokyocabinet | |
parent | Umask sys-fs/btrfs-progs[debug-utils] since dev-python/matplotlib is now keyw... (diff) | |
download | gentoo-2-c5ca77b562580b865d7eaa6dc5dd85570bbf188c.tar.gz gentoo-2-c5ca77b562580b865d7eaa6dc5dd85570bbf188c.tar.bz2 gentoo-2-c5ca77b562580b865d7eaa6dc5dd85570bbf188c.zip |
Stripping -fomit-frame-pointer from Makefile too
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'dev-db/tokyocabinet')
-rw-r--r-- | dev-db/tokyocabinet/ChangeLog | 5 | ||||
-rw-r--r-- | dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/dev-db/tokyocabinet/ChangeLog b/dev-db/tokyocabinet/ChangeLog index c74c857e14c7..17aff620d738 100644 --- a/dev-db/tokyocabinet/ChangeLog +++ b/dev-db/tokyocabinet/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-db/tokyocabinet # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.34 2011/04/01 17:10:02 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/ChangeLog,v 1.35 2011/04/01 22:25:45 patrick Exp $ + + 01 Apr 2011; Patrick Lauer <patrick@gentoo.org> tokyocabinet-1.4.47.ebuild: + Stripping -fomit-frame-pointer from Makefile too 01 Apr 2011; Patrick Lauer <patrick@gentoo.org> -tokyocabinet-1.4.41.ebuild, -tokyocabinet-1.4.42.ebuild, -tokyocabinet-1.4.45.ebuild, diff --git a/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild b/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild index b5060a2fab48..a7cd683aa629 100644 --- a/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild +++ b/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild,v 1.2 2011/04/01 17:10:02 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-db/tokyocabinet/tokyocabinet-1.4.47.ebuild,v 1.3 2011/04/01 22:25:45 patrick Exp $ EAPI="2" @@ -24,8 +24,9 @@ src_prepare() { sed -i \ -e "/ldconfig/d" \ -e "/DATADIR/d" Makefile.in || die - # cflags fix - remove -O2 at end of line + # cflags fix - remove -O2 at end of line and -fomit-frame-pointer sed -i -e 's/-O3"$/"/' configure.in || die + sed -i -e 's/-fomit-frame-pointer//' configure.in || die eautoreconf || die } |