summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gilbert <floppym@gentoo.org>2012-06-05 19:02:50 +0000
committerMike Gilbert <floppym@gentoo.org>2012-06-05 19:02:50 +0000
commit6e110023c8fc34638e9b25b9caed47d909218744 (patch)
treebaf4387e429ccd67917c27ebf1c3273b0de9221e /sys-boot/grub
parentadding ~ppc (bug 412489) (diff)
downloadgentoo-2-6e110023c8fc34638e9b25b9caed47d909218744.tar.gz
gentoo-2-6e110023c8fc34638e9b25b9caed47d909218744.tar.bz2
gentoo-2-6e110023c8fc34638e9b25b9caed47d909218744.zip
Call autoreconf directly (via autogen.sh) since eautoreconf insists on callign autopoint. Bug 418081.
(Portage version: 2.2.0_alpha109/cvs/Linux x86_64)
Diffstat (limited to 'sys-boot/grub')
-rw-r--r--sys-boot/grub/ChangeLog6
-rw-r--r--sys-boot/grub/grub-9999.ebuild8
2 files changed, 10 insertions, 4 deletions
diff --git a/sys-boot/grub/ChangeLog b/sys-boot/grub/ChangeLog
index 78ee0f6ab927..7fd9f29c10df 100644
--- a/sys-boot/grub/ChangeLog
+++ b/sys-boot/grub/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for sys-boot/grub
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.209 2012/06/02 16:06:48 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.210 2012/06/05 19:02:50 floppym Exp $
+
+ 05 Jun 2012; Mike Gilbert <floppym@gentoo.org> grub-9999.ebuild:
+ Call autoreconf directly (via autogen.sh) since eautoreconf insists on callign
+ autopoint. Bug 418081.
*grub-2.00_beta6 (02 Jun 2012)
diff --git a/sys-boot/grub/grub-9999.ebuild b/sys-boot/grub/grub-9999.ebuild
index 22ac69cf5e8a..62788fc9fc15 100644
--- a/sys-boot/grub/grub-9999.ebuild
+++ b/sys-boot/grub/grub-9999.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-9999.ebuild,v 1.65 2012/06/02 16:06:48 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-9999.ebuild,v 1.66 2012/06/05 19:02:50 floppym Exp $
EAPI=4
@@ -208,8 +208,10 @@ src_prepare() {
# autogen.sh does more than just run autotools
if [[ -n ${DO_AUTORECONF} ]] ; then
- sed -i -e '/^autoreconf/s:^:set +e; e:' autogen.sh || die
- (. ./autogen.sh) || die
+ # sed -i -e '/^autoreconf/s:^:set +e; e:' autogen.sh || die
+ # (. ./autogen.sh) || die
+ autotools_env_setup
+ ./autogen.sh || die
fi
# install into the right dir for eselect #372735