Gentoo Archives: gentoo-commits

From: Benda XU <heroxbd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/R/
Date: Fri, 16 Jul 2021 11:52:49
Message-Id: 1626436359.b5ca7094608362020c06f80bb01ee6b872c029c0.heroxbd@gentoo
1 commit: b5ca7094608362020c06f80bb01ee6b872c029c0
2 Author: Benda Xu <heroxbd <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 16 11:51:51 2021 +0000
4 Commit: Benda XU <heroxbd <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 16 11:52:39 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5ca7094
7
8 dev-lang/R: fix econf arguments.
9
10 mjo has forgotten to append '\' to include the arguments after lto.
11
12 Reference: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b3b5b20fe9c71906a674908c8dd08d38706804b
13
14 Closes: https://bugs.gentoo.org/801928
15 Closes: https://github.com/gentoo/gentoo/pull/21626
16
17 Package-Manager: Portage-3.0.20, Repoman-3.0.3
18 Signed-off-by: Benda Xu <heroxbd <AT> gentoo.org>
19
20 dev-lang/R/R-4.1.0-r1.ebuild | 2 +-
21 1 file changed, 1 insertion(+), 1 deletion(-)
22
23 diff --git a/dev-lang/R/R-4.1.0-r1.ebuild b/dev-lang/R/R-4.1.0-r1.ebuild
24 index 3972132499a..ebf4b5c27c2 100644
25 --- a/dev-lang/R/R-4.1.0-r1.ebuild
26 +++ b/dev-lang/R/R-4.1.0-r1.ebuild
27 @@ -136,7 +136,7 @@ src_configure() {
28 --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \
29 rdocdir="${EPREFIX}/usr/share/doc/${PF}" \
30 $(use_enable java) \
31 - $(use_enable lto lto R)
32 + $(use_enable lto lto R) \
33 $(use_enable nls) \
34 $(use_enable openmp) \
35 $(use_enable profile R-profiling) \