diff options
author | Mike Gilbert <floppym@gentoo.org> | 2012-06-09 04:47:30 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2012-06-09 04:47:30 +0000 |
commit | 4aae55b585ef15ccbce32b2d478b73c8e5872524 (patch) | |
tree | 645cf7d3ed6e0dd7f09622fccbe5e439c1b29467 /sys-boot | |
parent | marked x86 per bug 419663 (diff) | |
download | gentoo-2-4aae55b585ef15ccbce32b2d478b73c8e5872524.tar.gz gentoo-2-4aae55b585ef15ccbce32b2d478b73c8e5872524.tar.bz2 gentoo-2-4aae55b585ef15ccbce32b2d478b73c8e5872524.zip |
Stub out autopoint before calling eautoreconf.
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/grub/ChangeLog | 5 | ||||
-rw-r--r-- | sys-boot/grub/grub-9999.ebuild | 13 |
2 files changed, 11 insertions, 7 deletions
diff --git a/sys-boot/grub/ChangeLog b/sys-boot/grub/ChangeLog index 7fd9f29c10df..9ce81dc4a9d4 100644 --- a/sys-boot/grub/ChangeLog +++ b/sys-boot/grub/ChangeLog @@ -1,6 +1,9 @@ # 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.210 2012/06/05 19:02:50 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.211 2012/06/09 04:47:30 floppym Exp $ + + 09 Jun 2012; Mike Gilbert <floppym@gentoo.org> grub-9999.ebuild: + Stub out autopoint before calling eautoreconf. 05 Jun 2012; Mike Gilbert <floppym@gentoo.org> grub-9999.ebuild: Call autoreconf directly (via autogen.sh) since eautoreconf insists on callign diff --git a/sys-boot/grub/grub-9999.ebuild b/sys-boot/grub/grub-9999.ebuild index 62788fc9fc15..2d919eafafb7 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.66 2012/06/05 19:02:50 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-9999.ebuild,v 1.67 2012/06/09 04:47:30 floppym Exp $ EAPI=4 @@ -208,10 +208,11 @@ 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 - autotools_env_setup - ./autogen.sh || die + sed -i -e '/^autoreconf/s:^:set +e; e:' autogen.sh || die + ( + autopoint() { :; } + . ./autogen.sh + ) || die fi # install into the right dir for eselect #372735 @@ -225,7 +226,7 @@ src_prepare() { use grub_platforms_${i} && GRUB_ENABLED_PLATFORMS+=" ${i}" done [[ -z ${GRUB_ENABLED_PLATFORMS} ]] && GRUB_ENABLED_PLATFORMS="guessed" - elog "Going to build following platforms: ${GRUB_ENABLED_PLATFORMS}" + einfo "Going to build following platforms: ${GRUB_ENABLED_PLATFORMS}" } src_configure() { |