diff options
author | 2012-04-28 17:12:59 +0000 | |
---|---|---|
committer | 2012-04-28 17:12:59 +0000 | |
commit | 83746394bd536c21c516fe4ca9336ecea6ae306c (patch) | |
tree | 1f3b3a7af0dc3af56a18866b03e994ba9d650fa3 /app-cdr/cdrtools/cdrtools-3.01_alpha07.ebuild | |
parent | Apply endian patch by Christopher Friedt (bug #275885). Clean up patch. Respe... (diff) | |
download | historical-83746394bd536c21c516fe4ca9336ecea6ae306c.tar.gz historical-83746394bd536c21c516fe4ca9336ecea6ae306c.tar.bz2 historical-83746394bd536c21c516fe4ca9336ecea6ae306c.zip |
Fix bug #410537 to respect CFLAGS. Thanks to Michael (kensington) for the report and the ebuild patch.
Package-Manager: portage-2.1.10.49/cvs/Linux i686
Diffstat (limited to 'app-cdr/cdrtools/cdrtools-3.01_alpha07.ebuild')
-rw-r--r-- | app-cdr/cdrtools/cdrtools-3.01_alpha07.ebuild | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/app-cdr/cdrtools/cdrtools-3.01_alpha07.ebuild b/app-cdr/cdrtools/cdrtools-3.01_alpha07.ebuild index ff9773249665..66932d28f28e 100644 --- a/app-cdr/cdrtools/cdrtools-3.01_alpha07.ebuild +++ b/app-cdr/cdrtools/cdrtools-3.01_alpha07.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/app-cdr/cdrtools/cdrtools-3.01_alpha07.ebuild,v 1.2 2012/04/05 19:16:33 billie Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-cdr/cdrtools/cdrtools-3.01_alpha07.ebuild,v 1.3 2012/04/28 17:12:59 billie Exp $ EAPI=4 @@ -55,6 +55,8 @@ src_prepare() { rules1.top || die "sed rules1.top" sed -i -e "/^\(CC\|DYNLD\|LDCC\|MKDEP\)/s|gcc|${tcCC}|" \ -e "/^\(CC++\|DYNLDC++\|LDCC++\|MKC++DEP\)/s|g++|${tcCXX}|" \ + -e "/COPTOPT=/s/-O//" \ + -e 's/$(GCCOPTOPT)//' \ cc-gcc.rul || die "sed cc-gcc.rul" sed -i -e "s|^#CONFFLAGS +=\t-cc=\$(XCC_COM)$|CONFFLAGS +=\t-cc=${tcCC}|g" \ rules.cnf || die "sed rules.cnf" |