diff options
author | 2011-01-09 21:25:29 +0000 | |
---|---|---|
committer | 2011-01-09 21:25:29 +0000 | |
commit | 57bffa4cfb6a0f30e43c7c211ff4732b4bc8d37b (patch) | |
tree | 29d440bc81c430806f7d51276580990c419baac7 /dev-libs/jemalloc | |
parent | Remove old version. (diff) | |
download | gentoo-2-57bffa4cfb6a0f30e43c7c211ff4732b4bc8d37b.tar.gz gentoo-2-57bffa4cfb6a0f30e43c7c211ff4732b4bc8d37b.tar.bz2 gentoo-2-57bffa4cfb6a0f30e43c7c211ff4732b4bc8d37b.zip |
Fix file collision with google-perftools bug #351233
(Portage version: 2.1.9.30/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/jemalloc')
-rw-r--r-- | dev-libs/jemalloc/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/jemalloc/jemalloc-2.1.0-r1.ebuild (renamed from dev-libs/jemalloc/jemalloc-2.1.0.ebuild) | 6 |
2 files changed, 12 insertions, 2 deletions
diff --git a/dev-libs/jemalloc/ChangeLog b/dev-libs/jemalloc/ChangeLog index 8ba020a52a4b..0b6d07910e2f 100644 --- a/dev-libs/jemalloc/ChangeLog +++ b/dev-libs/jemalloc/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/jemalloc # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v 1.2 2011/01/07 02:14:46 anarchy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/ChangeLog,v 1.3 2011/01/09 21:25:29 anarchy Exp $ + +*jemalloc-2.1.0-r1 (09 Jan 2011) + + 09 Jan 2011; Jory A. Pratt <anarchy@gentoo.org> -jemalloc-2.1.0.ebuild, + +jemalloc-2.1.0-r1.ebuild: + Fix file collision with google-perftools bug #351233 *jemalloc-2.1.0 (07 Jan 2011) diff --git a/dev-libs/jemalloc/jemalloc-2.1.0.ebuild b/dev-libs/jemalloc/jemalloc-2.1.0-r1.ebuild index febf718eeb87..3ef685c2dad4 100644 --- a/dev-libs/jemalloc/jemalloc-2.1.0.ebuild +++ b/dev-libs/jemalloc/jemalloc-2.1.0-r1.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-libs/jemalloc/jemalloc-2.1.0.ebuild,v 1.1 2011/01/07 02:14:45 anarchy Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/jemalloc/jemalloc-2.1.0-r1.ebuild,v 1.1 2011/01/09 21:25:29 anarchy Exp $ EAPI="2" @@ -27,6 +27,7 @@ src_prepare() { src_configure() { econf \ + --with-jemalloc-prefix=j \ $(use_enable debug) \ $(use_enable profile prof) \ $(use_enable stats) \ @@ -35,4 +36,7 @@ src_configure() { src_install() { make DESTDIR="${D}" install + + # Rename pproff to prevent collision + mv "${D}"/usr/bin/pprof "${D}"/usr/bin/jpprof } |