diff options
author | Tavis Ormandy <taviso@gentoo.org> | 2003-05-19 00:43:19 +0000 |
---|---|---|
committer | Tavis Ormandy <taviso@gentoo.org> | 2003-05-19 00:43:19 +0000 |
commit | ddb362042489aff2bd651e755f4334bfc97ba7a4 (patch) | |
tree | 480e216c36c57104d5ec9038bf07359cf467466a /sys-devel | |
parent | fix gcc-3.3 issues, bug #21213 (diff) | |
download | gentoo-2-ddb362042489aff2bd651e755f4334bfc97ba7a4.tar.gz gentoo-2-ddb362042489aff2bd651e755f4334bfc97ba7a4.tar.bz2 gentoo-2-ddb362042489aff2bd651e755f4334bfc97ba7a4.zip |
Removing some gcc hardcodes, using ${CC:-gcc} instead.
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/libperl/ChangeLog | 5 | ||||
-rw-r--r-- | sys-devel/libperl/libperl-5.8.0.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sys-devel/libperl/ChangeLog b/sys-devel/libperl/ChangeLog index 0e2d91dd5ac7..3300e7d8a66a 100644 --- a/sys-devel/libperl/ChangeLog +++ b/sys-devel/libperl/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-devel/libperl # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libperl/ChangeLog,v 1.9 2003/03/28 08:04:00 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libperl/ChangeLog,v 1.10 2003/05/19 00:43:19 taviso Exp $ + + 18 May 2003; Tavis Ormandy <taviso@gentoo.org> libperl-5.8.0.ebuild: + removing gcc hardcoded compiler, using ${CC:-gcc} 11 Feb 2003; Guy Martin <gmsoft@gentoo.org> libperl-5.8.0.ebuild : Added hppa to keywords. diff --git a/sys-devel/libperl/libperl-5.8.0.ebuild b/sys-devel/libperl/libperl-5.8.0.ebuild index e390633bc41f..b5a5137e1f21 100644 --- a/sys-devel/libperl/libperl-5.8.0.ebuild +++ b/sys-devel/libperl/libperl-5.8.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/libperl/libperl-5.8.0.ebuild,v 1.11 2003/03/28 08:04:01 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/libperl/libperl-5.8.0.ebuild,v 1.12 2003/05/19 00:43:19 taviso Exp $ # The basic theory based on comments from Daniel Robbins <drobbins@gentoo.org>. # @@ -207,7 +207,7 @@ src_compile() { -Darchname="${myarch}" \ -Dcccdlflags='-fPIC' \ -Dccdlflags='-rdynamic' \ - -Dcc='gcc' \ + -Dcc="${CC:-gcc}" \ -Dprefix='/usr' \ -Dvendorprefix='/usr' \ -Dsiteprefix='/usr' \ @@ -247,7 +247,7 @@ EOF sleep 10 sh Configure -des \ -Darchname="${myarch}" \ - -Dcc='gcc' \ + -Dcc="${CC:-gcc}" \ -Dprefix='/usr' \ -Dvendorprefix='/usr' \ -Dsiteprefix='/usr' \ |