diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2005-08-31 11:44:34 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2005-08-31 11:44:34 +0000 |
commit | 607285a5837e77b53c40294c3f343a240d1307f8 (patch) | |
tree | ab321b858faa0888215366bade1e7c4387490d34 /dev-libs/atk | |
parent | Forgot to include bug number (diff) | |
download | gentoo-2-607285a5837e77b53c40294c3f343a240d1307f8.tar.gz gentoo-2-607285a5837e77b53c40294c3f343a240d1307f8.tar.bz2 gentoo-2-607285a5837e77b53c40294c3f343a240d1307f8.zip |
Fix aclocal call if gtk-doc is not installed
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'dev-libs/atk')
-rw-r--r-- | dev-libs/atk/atk-1.10.2.ebuild | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/dev-libs/atk/atk-1.10.2.ebuild b/dev-libs/atk/atk-1.10.2.ebuild index efbeef8c6b04..64d9698cfb32 100644 --- a/dev-libs/atk/atk-1.10.2.ebuild +++ b/dev-libs/atk/atk-1.10.2.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/dev-libs/atk/atk-1.10.2.ebuild,v 1.1 2005/08/31 09:58:22 leonardop Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/atk/atk-1.10.2.ebuild,v 1.2 2005/08/31 11:44:34 leonardop Exp $ inherit gnome2 @@ -32,7 +32,8 @@ src_unpack() { # Re-generate ltmain.sh, configure and friends, since the upstream tarball # was built with a buggy libtool (missing 'so' extension in binaries). export WANT_AUTOMAKE=1.7 + cp aclocal.m4 old_macros.m4 libtoolize --copy --force - aclocal || die "aclocal failed" + aclocal -I . || die "aclocal failed" autoconf || die "autoconf failed" } |