summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Dupeyron <calchan@gentoo.org>2013-02-18 19:45:15 +0000
committerDenis Dupeyron <calchan@gentoo.org>2013-02-18 19:45:15 +0000
commitfb26dc8d6453f50b97f556a49e84d2a537d6ff91 (patch)
treeb71c87c2d03d9c55ce4af851fee03d4051dc62da /dev-lang/R
parentStable for x86, wrt bug #458122 (diff)
downloadgentoo-2-fb26dc8d6453f50b97f556a49e84d2a537d6ff91.tar.gz
gentoo-2-fb26dc8d6453f50b97f556a49e84d2a537d6ff91.tar.bz2
gentoo-2-fb26dc8d6453f50b97f556a49e84d2a537d6ff91.zip
Fix ar being called directly (bug #457758).
(Portage version: 2.1.11.50/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-lang/R')
-rw-r--r--dev-lang/R/ChangeLog5
-rw-r--r--dev-lang/R/R-2.15.2-r2.ebuild6
2 files changed, 7 insertions, 4 deletions
diff --git a/dev-lang/R/ChangeLog b/dev-lang/R/ChangeLog
index 11dc022f8de3..8f512ac481fa 100644
--- a/dev-lang/R/ChangeLog
+++ b/dev-lang/R/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/R
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/ChangeLog,v 1.210 2013/02/13 19:16:31 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/ChangeLog,v 1.211 2013/02/18 19:45:15 calchan Exp $
+
+ 18 Feb 2013; Denis Dupeyron <calchan@gentoo.org> R-2.15.2-r2.ebuild:
+ Fix ar being called directly (bug #457758).
*R-2.15.2-r2 (13 Feb 2013)
diff --git a/dev-lang/R/R-2.15.2-r2.ebuild b/dev-lang/R/R-2.15.2-r2.ebuild
index 43c7260e4f11..de277cbf60aa 100644
--- a/dev-lang/R/R-2.15.2-r2.ebuild
+++ b/dev-lang/R/R-2.15.2-r2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/R-2.15.2-r2.ebuild,v 1.1 2013/02/13 19:16:31 calchan Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/R/R-2.15.2-r2.ebuild,v 1.2 2013/02/18 19:45:15 calchan Exp $
EAPI=5
@@ -164,8 +164,8 @@ src_configure() {
src_compile() {
export VARTEXFONTS="${T}/fonts"
- emake
- emake -C src/nmath/standalone shared $(use static-libs && echo static)
+ emake AR="$(tc-getAR)"
+ emake -C src/nmath/standalone shared $(use static-libs && echo static) AR="$(tc-getAR)"
use doc && emake info pdf
}