diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-08-05 16:57:26 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-08-05 16:57:26 +0000 |
commit | b68ab0633fc8399bfb4d370870753b5a6187af79 (patch) | |
tree | 2a8b204cd33c2d042823859145157835ef5c9f45 /dev-libs/zthread | |
parent | remove older (diff) | |
download | gentoo-2-b68ab0633fc8399bfb4d370870753b5a6187af79.tar.gz gentoo-2-b68ab0633fc8399bfb4d370870753b5a6187af79.tar.bz2 gentoo-2-b68ab0633fc8399bfb4d370870753b5a6187af79.zip |
fix syntax
Diffstat (limited to 'dev-libs/zthread')
-rw-r--r-- | dev-libs/zthread/zthread-1.5.3.ebuild | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/dev-libs/zthread/zthread-1.5.3.ebuild b/dev-libs/zthread/zthread-1.5.3.ebuild index 295f0451c4f2..96f593fdb1b5 100644 --- a/dev-libs/zthread/zthread-1.5.3.ebuild +++ b/dev-libs/zthread/zthread-1.5.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-1.5.3.ebuild,v 1.11 2003/08/03 02:27:17 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/zthread/zthread-1.5.3.ebuild,v 1.12 2003/08/05 16:56:20 vapier Exp $ DESCRIPTION="platform-independent object-oriented threading architecture" HOMEPAGE="http://www.cs.buffalo.edu/~crahen/projects/zthread/" @@ -17,10 +17,9 @@ S=${WORKDIR}/ZThread-${PV} src_compile() { local myconf [ `use debug` ] \ - && myconf="--enable-debug=yes" + && myconf="--enable-debug=yes" \ || myconf="--enable-debug=no" econf ${myconf} || die "./configure failed" - emake || die } |