summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2013-04-25 07:31:49 +0000
committerLars Wendler <polynomial-c@gentoo.org>2013-04-25 07:31:49 +0000
commitd616f13e94a56563381db715245fdc96e6648525 (patch)
tree174913159a1c435e55af9b2800f7e67519ce5311 /dev-util/kbuild
parentFix Bug 452558 - dev-lang/mlton-20100608 fails to build, unknown type name '_... (diff)
downloadgentoo-2-d616f13e94a56563381db715245fdc96e6648525.tar.gz
gentoo-2-d616f13e94a56563381db715245fdc96e6648525.tar.bz2
gentoo-2-d616f13e94a56563381db715245fdc96e6648525.zip
Fixed eautoreconf with >=automake-1.13 (bug #467104)
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'dev-util/kbuild')
-rw-r--r--dev-util/kbuild/ChangeLog6
-rw-r--r--dev-util/kbuild/kbuild-0.1.9998_pre20120806.ebuild4
2 files changed, 8 insertions, 2 deletions
diff --git a/dev-util/kbuild/ChangeLog b/dev-util/kbuild/ChangeLog
index b792f61c5ffd..8f3c7dbc9c9c 100644
--- a/dev-util/kbuild/ChangeLog
+++ b/dev-util/kbuild/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-util/kbuild
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/kbuild/ChangeLog,v 1.36 2013/04/13 20:52:03 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/kbuild/ChangeLog,v 1.37 2013/04/25 07:31:49 polynomial-c Exp $
+
+ 25 Apr 2013; Lars Wendler <polynomial-c@gentoo.org>
+ kbuild-0.1.9998_pre20120806.ebuild:
+ Fixed eautoreconf with >=automake-1.13 (bug #467104).
13 Apr 2013; Lars Wendler <polynomial-c@gentoo.org>
-kbuild-0.1.9998_pre20110817.ebuild, -kbuild-0.1.9998_pre20110817-r1.ebuild:
diff --git a/dev-util/kbuild/kbuild-0.1.9998_pre20120806.ebuild b/dev-util/kbuild/kbuild-0.1.9998_pre20120806.ebuild
index 30d5ca6b7f19..47230a9e4d75 100644
--- a/dev-util/kbuild/kbuild-0.1.9998_pre20120806.ebuild
+++ b/dev-util/kbuild/kbuild-0.1.9998_pre20120806.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/kbuild/kbuild-0.1.9998_pre20120806.ebuild,v 1.5 2013/04/09 18:26:29 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/kbuild/kbuild-0.1.9998_pre20120806.ebuild,v 1.6 2013/04/25 07:31:49 polynomial-c Exp $
EAPI=4
@@ -38,6 +38,8 @@ src_prepare() {
cd "${S}/src/kmk" || die
eautoreconf
cd "${S}/src/sed" || die
+ # AM_CONFIG_HEADER is obsolete since automake-1.13 (bug #467104)
+ sed 's@AM_CONFIG_HEADER@AC_CONFIG_HEADERS@' -i configure.ac || die
eautoreconf
sed -e "s@_LDFLAGS\.${ARCH}*.*=@& ${LDFLAGS}@g" \