diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-07-14 00:49:04 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-07-14 00:49:04 +0000 |
commit | 13d4ba296c2c0b254fc4f1b46fcbbf0fa8cb07a6 (patch) | |
tree | 63109501c5a53493b33aa972cf6b1badefae8e0f /games-rpg | |
parent | Version bump. (diff) | |
download | gentoo-2-13d4ba296c2c0b254fc4f1b46fcbbf0fa8cb07a6.tar.gz gentoo-2-13d4ba296c2c0b254fc4f1b46fcbbf0fa8cb07a6.tar.bz2 gentoo-2-13d4ba296c2c0b254fc4f1b46fcbbf0fa8cb07a6.zip |
update autotool code #98923
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'games-rpg')
-rw-r--r-- | games-rpg/adonthell/adonthell-0.3.4a.ebuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/games-rpg/adonthell/adonthell-0.3.4a.ebuild b/games-rpg/adonthell/adonthell-0.3.4a.ebuild index 0b931e6eb463..b73cd819e132 100644 --- a/games-rpg/adonthell/adonthell-0.3.4a.ebuild +++ b/games-rpg/adonthell/adonthell-0.3.4a.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/games-rpg/adonthell/adonthell-0.3.4a.ebuild,v 1.2 2005/06/15 19:02:21 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/games-rpg/adonthell/adonthell-0.3.4a.ebuild,v 1.3 2005/07/14 00:49:04 vapier Exp $ inherit eutils games @@ -30,8 +30,12 @@ S=${WORKDIR}/${PN}-${PV/a/} src_unpack() { unpack ${A} cd "${S}" - epatch "${FILESDIR}/${PV}-configure.in.patch" - aclocal && automake -a && autoconf || die "autotools failed" + epatch "${FILESDIR}"/${PV}-configure.in.patch + rm -f ac{local,include}.m4 + aclocal && \ + libtoolize -c -f && \ + autoconf && \ + automake -a -c || die "autotools failed" } src_compile() { |