diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-10 16:45:41 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-10 16:45:41 +0000 |
commit | 4bdea37c4983bcaf0ca87da0e3771444db6e094a (patch) | |
tree | 4de8f0763b9d1de9d78b924e778b509a6f9a5dd0 /app-text/crm114/crm114-20040601.ebuild | |
parent | Initial import. Fixes #50366. (Manifest recommit) (diff) | |
download | gentoo-2-4bdea37c4983bcaf0ca87da0e3771444db6e094a.tar.gz gentoo-2-4bdea37c4983bcaf0ca87da0e3771444db6e094a.tar.bz2 gentoo-2-4bdea37c4983bcaf0ca87da0e3771444db6e094a.zip |
Fix use invocation
Diffstat (limited to 'app-text/crm114/crm114-20040601.ebuild')
-rw-r--r-- | app-text/crm114/crm114-20040601.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app-text/crm114/crm114-20040601.ebuild b/app-text/crm114/crm114-20040601.ebuild index 36868e8a0733..52a098acf84c 100644 --- a/app-text/crm114/crm114-20040601.ebuild +++ b/app-text/crm114/crm114-20040601.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-text/crm114/crm114-20040601.ebuild,v 1.2 2004/06/10 08:09:07 dholm Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/crm114/crm114-20040601.ebuild,v 1.3 2004/06/10 16:45:41 agriffis Exp $ IUSE="nls static" @@ -30,7 +30,7 @@ src_unpack() { sed -i "s#^CFLAGS.*#CFLAGS+=${CFLAGS} -I.#" Makefile - if [ `use static` ] ; then + if use static ; then sed -i "s#-ltre#-L${S}/${TREVERS}/lib/.libs/ -ltre#g" Makefile else sed -i "s#-static##g" Makefile @@ -44,7 +44,7 @@ src_unpack() { src_compile() { # Build TRE library. - if [ `use static` ] ; then + if use static ; then cd ${S}/tre-${TREVERS} econf \ `use_enable nls` \ |