diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-05-12 15:59:59 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-05-12 15:59:59 +0000 |
commit | 3c0ac4dc187fbad3a3d509f7a994e40529469a3b (patch) | |
tree | 05c1ea015a3697a52dc082e6faa815851cd67011 /media-libs/libvpx | |
parent | alpha/ia64/m68k/s390/sh/sparc stable wrt #404179 (diff) | |
download | gentoo-2-3c0ac4dc187fbad3a3d509f7a994e40529469a3b.tar.gz gentoo-2-3c0ac4dc187fbad3a3d509f7a994e40529469a3b.tar.bz2 gentoo-2-3c0ac4dc187fbad3a3d509f7a994e40529469a3b.zip |
respect chost-prefixed toolchain, not only CC
(Portage version: 2.2.0_alpha104/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/libvpx')
-rw-r--r-- | media-libs/libvpx/ChangeLog | 5 | ||||
-rw-r--r-- | media-libs/libvpx/libvpx-1.1.0.ebuild | 7 |
2 files changed, 9 insertions, 3 deletions
diff --git a/media-libs/libvpx/ChangeLog b/media-libs/libvpx/ChangeLog index 79453cbc4c8f..4d1aed1edc64 100644 --- a/media-libs/libvpx/ChangeLog +++ b/media-libs/libvpx/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-libs/libvpx # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.54 2012/05/12 15:51:24 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/ChangeLog,v 1.55 2012/05/12 15:59:59 aballier Exp $ + + 12 May 2012; Alexis Ballier <aballier@gentoo.org> libvpx-1.1.0.ebuild: + respect chost-prefixed toolchain, not only CC 12 May 2012; Alexis Ballier <aballier@gentoo.org> libvpx-1.1.0.ebuild: use extra-cflags to overshadow optimizations if needed and do not force diff --git a/media-libs/libvpx/libvpx-1.1.0.ebuild b/media-libs/libvpx/libvpx-1.1.0.ebuild index 45c7c2bbfcef..fe589fde596d 100644 --- a/media-libs/libvpx/libvpx-1.1.0.ebuild +++ b/media-libs/libvpx/libvpx-1.1.0.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/media-libs/libvpx/libvpx-1.1.0.ebuild,v 1.4 2012/05/12 15:51:24 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libvpx/libvpx-1.1.0.ebuild,v 1.5 2012/05/12 15:59:59 aballier Exp $ EAPI=4 inherit multilib @@ -53,7 +53,10 @@ src_configure() { # http://bugs.gentoo.org/379659 http://gerrit.chromium.org/gerrit/#change,18142 export LC_ALL=C - tc-export CC + tc-export CC AR NM + # it links with CC and calls it LD... + export LD="${CC}" + ./configure \ --prefix="${EPREFIX}"/usr \ --libdir="${EPREFIX}"/usr/$(get_libdir) \ |