diff options
author | 2013-10-13 14:47:43 +0000 | |
---|---|---|
committer | 2013-10-13 14:47:43 +0000 | |
commit | 59cba09680b4c99ab7038ba5b1b1acf9573e234b (patch) | |
tree | 7c8de739c0e28b0e840e7e79d9bee8be0de4cdac /dev-libs/ucl/ucl-1.03-r1.ebuild | |
parent | version bump (diff) | |
download | gentoo-2-59cba09680b4c99ab7038ba5b1b1acf9573e234b.tar.gz gentoo-2-59cba09680b4c99ab7038ba5b1b1acf9573e234b.tar.bz2 gentoo-2-59cba09680b4c99ab7038ba5b1b1acf9573e234b.zip |
Fix build with latest automake
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'dev-libs/ucl/ucl-1.03-r1.ebuild')
-rw-r--r-- | dev-libs/ucl/ucl-1.03-r1.ebuild | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/dev-libs/ucl/ucl-1.03-r1.ebuild b/dev-libs/ucl/ucl-1.03-r1.ebuild index 0cc04182a99b..32214b0524d3 100644 --- a/dev-libs/ucl/ucl-1.03-r1.ebuild +++ b/dev-libs/ucl/ucl-1.03-r1.ebuild @@ -1,9 +1,8 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ucl-1.03-r1.ebuild,v 1.9 2012/09/11 07:30:25 vapier Exp $ - -EAPI=4 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ucl-1.03-r1.ebuild,v 1.10 2013/10/13 14:47:43 pacho Exp $ +EAPI=5 inherit autotools eutils DESCRIPTION="the UCL Compression Library" @@ -24,6 +23,9 @@ src_prepare() { # place them into acinclude.m4 because there doesn't seem to be an # m4/... sed -n -e '/^AC_DEFUN.*mfx_/,/^])#$/p' aclocal.m4 > acinclude.m4 || die "Unable to rescue mfx_* autoconf macros." + + sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die + eautoreconf } |