diff options
author | Aron Griffis <agriffis@gentoo.org> | 2004-06-10 00:52:55 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2004-06-10 00:52:55 +0000 |
commit | 1530a73884c77178f204d17bc0ce7b002cb46758 (patch) | |
tree | f88022bc743d69756fd9759a34dedf18c22aff47 /net-misc/stone/stone-2.2c.ebuild | |
parent | i almost forgot to use ${CC/ .*/} instead of calling gcc directly... that wou... (diff) | |
download | gentoo-2-1530a73884c77178f204d17bc0ce7b002cb46758.tar.gz gentoo-2-1530a73884c77178f204d17bc0ce7b002cb46758.tar.bz2 gentoo-2-1530a73884c77178f204d17bc0ce7b002cb46758.zip |
Fix use invocation
Diffstat (limited to 'net-misc/stone/stone-2.2c.ebuild')
-rw-r--r-- | net-misc/stone/stone-2.2c.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-misc/stone/stone-2.2c.ebuild b/net-misc/stone/stone-2.2c.ebuild index 398c030d19e4..0b0a3888a6bd 100644 --- a/net-misc/stone/stone-2.2c.ebuild +++ b/net-misc/stone/stone-2.2c.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/net-misc/stone/stone-2.2c.ebuild,v 1.1 2004/03/12 23:49:40 matsuu Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/stone/stone-2.2c.ebuild,v 1.2 2004/06/10 00:49:23 agriffis Exp $ DESCRIPTION="A simple TCP/IP packet repeater" HOMEPAGE="http://www.gcd.org/sengoku/stone/" @@ -15,7 +15,7 @@ DEPEND="virtual/glibc ssl? ( dev-libs/openssl )" src_compile() { - if [ "`use ssl`" ] ; then + if use ssl ; then emake \ CFLAGS="${CFLAGS}" \ SSL=/usr \ |