diff options
author | Simon Stelling <blubb@gentoo.org> | 2006-09-24 09:43:25 +0000 |
---|---|---|
committer | Simon Stelling <blubb@gentoo.org> | 2006-09-24 09:43:25 +0000 |
commit | c29ae1afff739c26c3855787a8cb3529846bd2aa (patch) | |
tree | 41fd2661a91d8992e8042249e18ec4eca876bb03 /dev-libs/libwbxml/libwbxml-0.9.2.ebuild | |
parent | update manifest (diff) | |
download | historical-c29ae1afff739c26c3855787a8cb3529846bd2aa.tar.gz historical-c29ae1afff739c26c3855787a8cb3529846bd2aa.tar.bz2 historical-c29ae1afff739c26c3855787a8cb3529846bd2aa.zip |
fix the CFLAGS hack; bug 148638
Package-Manager: portage-2.1.2_pre1-r1
Diffstat (limited to 'dev-libs/libwbxml/libwbxml-0.9.2.ebuild')
-rw-r--r-- | dev-libs/libwbxml/libwbxml-0.9.2.ebuild | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/dev-libs/libwbxml/libwbxml-0.9.2.ebuild b/dev-libs/libwbxml/libwbxml-0.9.2.ebuild index e0aec1df73e5..d1618fe08dbf 100644 --- a/dev-libs/libwbxml/libwbxml-0.9.2.ebuild +++ b/dev-libs/libwbxml/libwbxml-0.9.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libwbxml/libwbxml-0.9.2.ebuild,v 1.3 2006/09/21 19:38:13 dertobi123 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libwbxml/libwbxml-0.9.2.ebuild,v 1.4 2006/09/24 09:43:25 blubb Exp $ inherit eutils @@ -38,10 +38,7 @@ src_unpack() epatch ${FILESDIR}/${MY_P}.make_install.patch # Add support for our own CFLAGS - sed -i -e "s:-O3\\\:${CFLAGS}:" src/Makefile.am - sed -i -e "s: -g::" src/Makefile.am - sed -i -e "s:-O3\\\:${CFLAGS}:" tools/Makefile.am - sed -i -e "s: -g::" tools/Makefile.am + sed -i -e "s: -g::" -e "s:-O3\\\:${CFLAGS}:" {src,tools}/Makefile.am chmod 755 bootstrap } |