diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2005-02-27 10:59:52 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2005-02-27 10:59:52 +0000 |
commit | e63c4b3ef2d55b35b21a7c77ac03a051f0479123 (patch) | |
tree | e7bab9e8ff90f3681a195a5cc4a54ad34255a9d1 /eclass/myth.eclass | |
parent | Security update. See 83190 (diff) | |
download | gentoo-2-e63c4b3ef2d55b35b21a7c77ac03a051f0479123.tar.gz gentoo-2-e63c4b3ef2d55b35b21a7c77ac03a051f0479123.tar.bz2 gentoo-2-e63c4b3ef2d55b35b21a7c77ac03a051f0479123.zip |
Use correct CC and CXX.
Diffstat (limited to 'eclass/myth.eclass')
-rw-r--r-- | eclass/myth.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/myth.eclass b/eclass/myth.eclass index 34fd08f789b5..fc97d5775025 100644 --- a/eclass/myth.eclass +++ b/eclass/myth.eclass @@ -1,11 +1,11 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/myth.eclass,v 1.8 2005/02/21 22:55:08 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/myth.eclass,v 1.9 2005/02/27 10:59:52 eradicator Exp $ # # Author: Daniel Ahlberg <aliz@gentoo.org> # -inherit multilib +inherit multilib toolchain-funcs ECLASS=myth INHERITED="${INHERITED} ${ECLASS}" @@ -51,7 +51,7 @@ myth_src_compile() { export QMAKESPEC="linux-g++" qmake -o "Makefile" "${PN}.pro" - emake || die + emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" "${@}" || die } myth_src_install() { |