diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-05-19 00:22:40 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-05-19 00:22:40 +0000 |
commit | 98616f8bfcb4b3104ebe5b63c7b570968aacc03d (patch) | |
tree | 900ccb9c3be3f91277051e364520c61673b181f9 /app-accessibility/festival | |
parent | Version bump. (diff) | |
download | historical-98616f8bfcb4b3104ebe5b63c7b570968aacc03d.tar.gz historical-98616f8bfcb4b3104ebe5b63c7b570968aacc03d.tar.bz2 historical-98616f8bfcb4b3104ebe5b63c7b570968aacc03d.zip |
use custom CFLAGS instead of stupid default ones
Diffstat (limited to 'app-accessibility/festival')
-rw-r--r-- | app-accessibility/festival/festival-1.4.3-r1.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/app-accessibility/festival/festival-1.4.3-r1.ebuild b/app-accessibility/festival/festival-1.4.3-r1.ebuild index 09e52523616b..9cdcd8fec598 100644 --- a/app-accessibility/festival/festival-1.4.3-r1.ebuild +++ b/app-accessibility/festival/festival-1.4.3-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-accessibility/festival/festival-1.4.3-r1.ebuild,v 1.9 2004/04/20 07:06:27 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-accessibility/festival/festival-1.4.3-r1.ebuild,v 1.10 2004/05/19 00:22:40 vapier Exp $ inherit eutils @@ -65,9 +65,10 @@ src_unpack() { src_compile() { econf || die - - # emake does not work if you have anything larger then -j2 - make || die + emake -j1 \ + OPTIMISE_CXXFLAGS="${CXXFLAGS}" \ + OPTIMISE_CCFLAGS="${CFLAGS}" \ + || die } src_install() { |