diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2012-11-16 16:09:18 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2012-11-16 16:09:18 +0000 |
commit | d951afe8bfb326e941bcc53ce74e9765b05b3b7c (patch) | |
tree | 065397cc68302065cb5c6931a06df387b5ca7a75 /app-crypt/pinentry | |
parent | Try to fix building with static useflag enabled (diff) | |
download | gentoo-2-d951afe8bfb326e941bcc53ce74e9765b05b3b7c.tar.gz gentoo-2-d951afe8bfb326e941bcc53ce74e9765b05b3b7c.tar.bz2 gentoo-2-d951afe8bfb326e941bcc53ce74e9765b05b3b7c.zip |
Do not call ar directly, fixes bug#443526.
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 8EEE3BE8)
Diffstat (limited to 'app-crypt/pinentry')
-rw-r--r-- | app-crypt/pinentry/ChangeLog | 5 | ||||
-rw-r--r-- | app-crypt/pinentry/pinentry-0.8.2.ebuild | 6 |
2 files changed, 9 insertions, 2 deletions
diff --git a/app-crypt/pinentry/ChangeLog b/app-crypt/pinentry/ChangeLog index 4c8fc29ba02b..420b2923ad62 100644 --- a/app-crypt/pinentry/ChangeLog +++ b/app-crypt/pinentry/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-crypt/pinentry # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/pinentry/ChangeLog,v 1.130 2012/11/16 16:01:14 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/pinentry/ChangeLog,v 1.131 2012/11/16 16:09:18 scarabeus Exp $ + + 16 Nov 2012; Tomáš Chvátal <scarabeus@gentoo.org> pinentry-0.8.2.ebuild: + Do not call ar directly, fixes bug#443526. 16 Nov 2012; Tomáš Chvátal <scarabeus@gentoo.org> pinentry-0.8.2.ebuild: Try to fix building with static useflag enabled diff --git a/app-crypt/pinentry/pinentry-0.8.2.ebuild b/app-crypt/pinentry/pinentry-0.8.2.ebuild index 2308ea78fd34..d5c00a45dfa4 100644 --- a/app-crypt/pinentry/pinentry-0.8.2.ebuild +++ b/app-crypt/pinentry/pinentry-0.8.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/pinentry/pinentry-0.8.2.ebuild,v 1.4 2012/11/16 16:01:14 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/pinentry/pinentry-0.8.2.ebuild,v 1.5 2012/11/16 16:09:18 scarabeus Exp $ EAPI=5 @@ -67,6 +67,10 @@ src_configure() { --without-x } +src_compile() { + emake AR="$(tc-getAR)" +} + src_install() { default rm -f "${ED}"/usr/bin/pinentry || die |