diff options
author | Sven Wegener <swegener@gentoo.org> | 2005-07-10 01:23:03 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2005-07-10 01:23:03 +0000 |
commit | 429b99c5a2fbbb7393ed8b084ad009bdad984d57 (patch) | |
tree | 3479102e708574c67858d836c3a9301ae260203b /www-misc/multisort | |
parent | QA: Don't assign default to S; Use default src_compile (diff) | |
download | gentoo-2-429b99c5a2fbbb7393ed8b084ad009bdad984d57.tar.gz gentoo-2-429b99c5a2fbbb7393ed8b084ad009bdad984d57.tar.bz2 gentoo-2-429b99c5a2fbbb7393ed8b084ad009bdad984d57.zip |
QA: Don't assign default to S
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'www-misc/multisort')
-rw-r--r-- | www-misc/multisort/multisort-1.1.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/www-misc/multisort/multisort-1.1.ebuild b/www-misc/multisort/multisort-1.1.ebuild index 7cad5fa3e525..0da012ff1f70 100644 --- a/www-misc/multisort/multisort-1.1.ebuild +++ b/www-misc/multisort/multisort-1.1.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-misc/multisort/multisort-1.1.ebuild,v 1.1 2005/01/22 09:06:35 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-misc/multisort/multisort-1.1.ebuild,v 1.2 2005/07/10 01:23:03 swegener Exp $ + +inherit toolchain-funcs DESCRIPTION="multisort takes any number of httpd logfiles in the Common Log Format and merges them together" HOMEPAGE="http://www.xach.com/multisort/" @@ -13,12 +15,10 @@ IUSE="" DEPEND="" -S=${WORKDIR}/${P} - src_compile() { - make || die "make failed" + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "emake failed" } src_install() { - dosbin ${S}/multisort + dosbin ${S}/multisort } |