diff options
author | 2021-07-16 19:51:51 +0800 | |
---|---|---|
committer | 2021-07-16 19:52:39 +0800 | |
commit | b5ca7094608362020c06f80bb01ee6b872c029c0 (patch) | |
tree | 56a6f6fa640e36f662800cb20120945807568695 /dev-lang | |
parent | app-crypt/aescrypt: fix LDFLAGS in Makefile (diff) | |
download | gentoo-b5ca7094608362020c06f80bb01ee6b872c029c0.tar.gz gentoo-b5ca7094608362020c06f80bb01ee6b872c029c0.tar.bz2 gentoo-b5ca7094608362020c06f80bb01ee6b872c029c0.zip |
dev-lang/R: fix econf arguments.
mjo has forgotten to append '\' to include the arguments after lto.
Reference: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b3b5b20fe9c71906a674908c8dd08d38706804b
Closes: https://bugs.gentoo.org/801928
Closes: https://github.com/gentoo/gentoo/pull/21626
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Benda Xu <heroxbd@gentoo.org>
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/R/R-4.1.0-r1.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-lang/R/R-4.1.0-r1.ebuild b/dev-lang/R/R-4.1.0-r1.ebuild index 3972132499a3..ebf4b5c27c2e 100644 --- a/dev-lang/R/R-4.1.0-r1.ebuild +++ b/dev-lang/R/R-4.1.0-r1.ebuild @@ -136,7 +136,7 @@ src_configure() { --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" \ rdocdir="${EPREFIX}/usr/share/doc/${PF}" \ $(use_enable java) \ - $(use_enable lto lto R) + $(use_enable lto lto R) \ $(use_enable nls) \ $(use_enable openmp) \ $(use_enable profile R-profiling) \ |