diff options
author | Petteri Räty <betelgeuse@gentoo.org> | 2007-04-02 16:57:02 +0000 |
---|---|---|
committer | Petteri Räty <betelgeuse@gentoo.org> | 2007-04-02 16:57:02 +0000 |
commit | 744848bd0e030a4813856408913f5519af7f20f8 (patch) | |
tree | 85ccb23f870f0c34cf46649922ef9237610e39c3 /dev-util/cunit | |
parent | Update dtd for hal 0.5.9 (diff) | |
download | gentoo-2-744848bd0e030a4813856408913f5519af7f20f8.tar.gz gentoo-2-744848bd0e030a4813856408913f5519af7f20f8.tar.bz2 gentoo-2-744848bd0e030a4813856408913f5519af7f20f8.zip |
use autoreconf instead of using aclocal directly. Fixes bug #160150.
(Portage version: 2.1.2.3)
Diffstat (limited to 'dev-util/cunit')
-rw-r--r-- | dev-util/cunit/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/cunit/cunit-2.0.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/dev-util/cunit/ChangeLog b/dev-util/cunit/ChangeLog index 97b029ae9a11..2a8275157897 100644 --- a/dev-util/cunit/ChangeLog +++ b/dev-util/cunit/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/cunit # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/ChangeLog,v 1.13 2007/02/22 01:57:30 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/ChangeLog,v 1.14 2007/04/02 16:57:02 betelgeuse Exp $ + + 02 Apr 2007; Petteri Räty <betelgeuse@gentoo.org> cunit-2.0.ebuild: + use autoreconf instead of using aclocal directly. Fixes bug #160150. 22 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog: Transition to Manifest2. diff --git a/dev-util/cunit/cunit-2.0.ebuild b/dev-util/cunit/cunit-2.0.ebuild index c43cda9f7e76..c8ee50c0303e 100644 --- a/dev-util/cunit/cunit-2.0.ebuild +++ b/dev-util/cunit/cunit-2.0.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/cunit-2.0.ebuild,v 1.3 2007/01/05 07:00:47 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/cunit/cunit-2.0.ebuild,v 1.4 2007/04/02 16:57:02 betelgeuse Exp $ -inherit eutils +inherit eutils autotools DESCRIPTION="CUnit - C Unit Test Framework" SRC_URI="mirror://sourceforge/cunit/${P}-1.tar.gz" @@ -15,7 +15,7 @@ IUSE="" S=${WORKDIR}/CUnit-${PV}-1 src_compile() { - aclocal + eautoreconf econf || die "configure failed" emake || die "make failed" } |