Gentoo Archives: gentoo-commits

From: Ian Stakenvicius <axs@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/mozilla:master commit in: dev-libs/jemalloc/
Date: Mon, 29 May 2017 14:54:35
Message-Id: 1496069661.3cfdbdb9bb7fa8e6fed22658ba2dc7f6900ade3e.axs@gentoo
1 commit: 3cfdbdb9bb7fa8e6fed22658ba2dc7f6900ade3e
2 Author: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 29 14:54:21 2017 +0000
4 Commit: Ian Stakenvicius <axs <AT> gentoo <DOT> org>
5 CommitDate: Mon May 29 14:54:21 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=3cfdbdb9
7
8 jemalloc: add src_prepare to call eautoreconf for build system patches
9
10 dev-libs/jemalloc/jemalloc-4.5.0.ebuild | 7 ++++++-
11 1 file changed, 6 insertions(+), 1 deletion(-)
12
13 diff --git a/dev-libs/jemalloc/jemalloc-4.5.0.ebuild b/dev-libs/jemalloc/jemalloc-4.5.0.ebuild
14 index 9f7906e..9b1c134 100644
15 --- a/dev-libs/jemalloc/jemalloc-4.5.0.ebuild
16 +++ b/dev-libs/jemalloc/jemalloc-4.5.0.ebuild
17 @@ -3,7 +3,7 @@
18
19 EAPI=6
20
21 -inherit toolchain-funcs multilib-build multilib-minimal
22 +inherit autotools toolchain-funcs multilib-minimal
23
24 DESCRIPTION="Jemalloc is a general-purpose scalable concurrent allocator"
25 HOMEPAGE="http://www.canonware.com/jemalloc/"
26 @@ -23,6 +23,11 @@ MULTILIB_WRAPPED_HEADERS=( /usr/include/jemalloc/jemalloc.h )
27 # supress the warnings until automagic is removed from the eclass
28 QA_CONFIGURE_OPTIONS="--enable-static --disable-static --enable-shared --disable-shared"
29
30 +src_prepare() {
31 + default
32 + eautoreconf
33 +}
34 +
35 multilib_src_configure() {
36 local myconf=()