diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2013-09-14 10:44:44 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2013-09-14 10:44:44 +0000 |
commit | 3e2bcb9670af70f6dc7a3e14374bef923726c0a1 (patch) | |
tree | 5478c2f83e78bcc87c9ddf09f542a805918ad68a /sys-apps/which | |
parent | Stable for sparc, wrt bug #476764 (diff) | |
download | gentoo-2-3e2bcb9670af70f6dc7a3e14374bef923726c0a1.tar.gz gentoo-2-3e2bcb9670af70f6dc7a3e14374bef923726c0a1.tar.bz2 gentoo-2-3e2bcb9670af70f6dc7a3e14374bef923726c0a1.zip |
Fix my last commit to use tc-export instead
(Portage version: 2.2.4/cvs/Linux x86_64, signed Manifest commit with key C2BA7F3C!)
Diffstat (limited to 'sys-apps/which')
-rw-r--r-- | sys-apps/which/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/which/which-2.20-r1.ebuild | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/sys-apps/which/ChangeLog b/sys-apps/which/ChangeLog index 8a8df9b97158..a64cf9d0add1 100644 --- a/sys-apps/which/ChangeLog +++ b/sys-apps/which/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/which # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/which/ChangeLog,v 1.44 2013/09/14 10:14:18 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/which/ChangeLog,v 1.45 2013/09/14 10:44:44 hwoarang Exp $ + + 14 Sep 2013; Markos Chandras <hwoarang@gentoo.org> which-2.20-r1.ebuild: + Fix my last commit to use tc-export instead 14 Sep 2013; Markos Chandras <hwoarang@gentoo.org> which-2.20-r1.ebuild: Export AR. Bug #484854 diff --git a/sys-apps/which/which-2.20-r1.ebuild b/sys-apps/which/which-2.20-r1.ebuild index ee56b23c804f..eb50815630c6 100644 --- a/sys-apps/which/which-2.20-r1.ebuild +++ b/sys-apps/which/which-2.20-r1.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/sys-apps/which/which-2.20-r1.ebuild,v 1.2 2013/09/14 10:14:18 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/which/which-2.20-r1.ebuild,v 1.3 2013/09/14 10:44:44 hwoarang Exp $ EAPI="4" @@ -17,6 +17,10 @@ KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~spar IUSE="" src_prepare() { - export AR="$(tc-getAR)" append-lfs-flags } + +src_configure() { + tc-export AR + default +} |