Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/diffball/
Date: Fri, 10 Jan 2020 08:37:14
Message-Id: 1578645405.dafa3729decd7f5c715eb69187108c240fab9ce6.soap@gentoo
1 commit: dafa3729decd7f5c715eb69187108c240fab9ce6
2 Author: Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
3 AuthorDate: Fri Jan 10 08:36:45 2020 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 10 08:36:45 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dafa3729
7
8 dev-util/diffball: disable static library
9
10 * The current ebuild automagically produces
11 static archives.
12
13 Closes: https://github.com/gentoo/gentoo/pull/13292
14 Package-Manager: Portage-2.3.77, Repoman-2.3.17
15 Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>
16 Signed-off-by: David Seifert <soap <AT> gentoo.org>
17
18 dev-util/diffball/diffball-1.0.1-r1.ebuild | 2 +-
19 dev-util/diffball/diffball-1.0.1.ebuild | 2 +-
20 2 files changed, 2 insertions(+), 2 deletions(-)
21
22 diff --git a/dev-util/diffball/diffball-1.0.1-r1.ebuild b/dev-util/diffball/diffball-1.0.1-r1.ebuild
23 index 9bff0466800..804abc61444 100644
24 --- a/dev-util/diffball/diffball-1.0.1-r1.ebuild
25 +++ b/dev-util/diffball/diffball-1.0.1-r1.ebuild
26 @@ -34,5 +34,5 @@ src_prepare() {
27 }
28
29 src_configure() {
30 - econf $(use_enable debug asserts)
31 + econf --disable-static $(use_enable debug asserts)
32 }
33
34 diff --git a/dev-util/diffball/diffball-1.0.1.ebuild b/dev-util/diffball/diffball-1.0.1.ebuild
35 index fbb4ea67d72..c36e2a32479 100644
36 --- a/dev-util/diffball/diffball-1.0.1.ebuild
37 +++ b/dev-util/diffball/diffball-1.0.1.ebuild
38 @@ -30,5 +30,5 @@ src_prepare() {
39 }
40
41 src_configure() {
42 - econf $(use_enable debug asserts)
43 + econf --disable-static $(use_enable debug asserts)
44 }