diff options
author | Victor Ostorga <vostorga@gentoo.org> | 2009-08-04 21:39:45 +0000 |
---|---|---|
committer | Victor Ostorga <vostorga@gentoo.org> | 2009-08-04 21:39:45 +0000 |
commit | b25736a91a87826d3acb11b103496350a5f52d32 (patch) | |
tree | 81f97323c7ed918f36b201dc1e5005ca4cf8c31b /dev-util/as11 | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-b25736a91a87826d3acb11b103496350a5f52d32.tar.gz gentoo-2-b25736a91a87826d3acb11b103496350a5f52d32.tar.bz2 gentoo-2-b25736a91a87826d3acb11b103496350a5f52d32.zip |
Respecting CC variable, bug #243968
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'dev-util/as11')
-rw-r--r-- | dev-util/as11/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/as11/as11-1.0.ebuild | 8 |
2 files changed, 10 insertions, 5 deletions
diff --git a/dev-util/as11/ChangeLog b/dev-util/as11/ChangeLog index 3e0caeaa2177..bf854e67994d 100644 --- a/dev-util/as11/ChangeLog +++ b/dev-util/as11/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/as11 -# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/as11/ChangeLog,v 1.6 2007/05/15 09:10:31 bangert Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/as11/ChangeLog,v 1.7 2009/08/04 21:39:45 vostorga Exp $ + + 04 Aug 2009; <vostorga@gentoo.org> as11-1.0.ebuild: + Respecting CC variable, bug #243968 14 May 2007; Thilo Bangert <bangert@gentoo.org> metadata.xml: add <herd>no-herd</herd> diff --git a/dev-util/as11/as11-1.0.ebuild b/dev-util/as11/as11-1.0.ebuild index 7d4169db1ae0..22170773593f 100644 --- a/dev-util/as11/as11-1.0.ebuild +++ b/dev-util/as11/as11-1.0.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/as11/as11-1.0.ebuild,v 1.6 2007/07/12 01:05:42 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/as11/as11-1.0.ebuild,v 1.7 2009/08/04 21:39:45 vostorga Exp $ + +inherit toolchain-funcs DESCRIPTION="Motorola's AS11 Assembler for the 68HC11" HOMEPAGE="http://www.ai.mit.edu/people/rsargent/as11.html" @@ -17,7 +19,7 @@ DEPEND="virtual/libc" RDEPEND="" src_compile() { - emake || die "Compile failed" + emake CC="$(tc-getCC)" || die "Compile failed" } src_install() { |