diff options
author | Patrick Kursawe <phosphan@gentoo.org> | 2009-01-11 20:56:37 +0000 |
---|---|---|
committer | Patrick Kursawe <phosphan@gentoo.org> | 2009-01-11 20:56:37 +0000 |
commit | f3418f81e6b4934cbae2647f6c3c074303902d12 (patch) | |
tree | 2a617936a9770013b280e77d6d71262a92173027 /dev-util | |
parent | Add missing ru-language-pack, closes bug #246531 (diff) | |
download | gentoo-2-f3418f81e6b4934cbae2647f6c3c074303902d12.tar.gz gentoo-2-f3418f81e6b4934cbae2647f6c3c074303902d12.tar.bz2 gentoo-2-f3418f81e6b4934cbae2647f6c3c074303902d12.zip |
Bug #243984: Respecting CC variable from now on.
(Portage version: 2.1.4.5)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/cdecl/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/cdecl/cdecl-2.5-r1.ebuild | 8 |
2 files changed, 9 insertions, 6 deletions
diff --git a/dev-util/cdecl/ChangeLog b/dev-util/cdecl/ChangeLog index d94e4352eb7d..0744624b15a0 100644 --- a/dev-util/cdecl/ChangeLog +++ b/dev-util/cdecl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/cdecl -# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cdecl/ChangeLog,v 1.13 2008/03/06 17:24:19 tove Exp $ +# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/cdecl/ChangeLog,v 1.14 2009/01/11 20:56:37 phosphan Exp $ + + 11 Jan 2009; Patrick Kursawe <phosphan@gentoo.org> cdecl-2.5-r1.ebuild: + Bug #243984: Respecting CC variable from now on. 11 Feb 2008; Patrick Kursawe <phosphan@gentoo.org> cdecl-2.5-r1.ebuild: Works with bison, fixed dependencies, see bug #159885 diff --git a/dev-util/cdecl/cdecl-2.5-r1.ebuild b/dev-util/cdecl/cdecl-2.5-r1.ebuild index 15f429398b1e..487585138088 100644 --- a/dev-util/cdecl/cdecl-2.5-r1.ebuild +++ b/dev-util/cdecl/cdecl-2.5-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2008 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/cdecl/cdecl-2.5-r1.ebuild,v 1.13 2008/02/11 11:20:02 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cdecl/cdecl-2.5-r1.ebuild,v 1.14 2009/01/11 20:56:36 phosphan Exp $ -inherit eutils +inherit eutils toolchain-funcs DESCRIPTION="Turn English phrases to C or C++ declarations" SRC_URI="ftp://ftp.netsw.org/softeng/lang/c/tools/cdecl/${P}.tar.gz" @@ -37,7 +37,7 @@ src_compile() { CFLAGS="${CFLAGS} -DUSE_READLINE" LIBS="${LIBS} -lreadline -lncurses" fi - emake CFLAGS="${CFLAGS}" LIBS="${LIBS}" || die + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LIBS="${LIBS}" || die } src_install() { |