Note: Due to technical difficulties, the Archives are currently not up to date.
GMANE provides an alternative service for most mailing lists. c.f. bug 424647
List Archive: gentoo-commits
floppym 12/06/09 04:47:31
Modified: grub-9999.ebuild ChangeLog
Log:
Stub out autopoint before calling eautoreconf.
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Revision Changes Path
1.67 sys-boot/grub/grub-9999.ebuild
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-9999.ebuild?rev=1.67&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-9999.ebuild?rev=1.67&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-9999.ebuild?r1=1.66&r2=1.67
Index: grub-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-9999.ebuild,v
retrieving revision 1.66
retrieving revision 1.67
diff -u -r1.66 -r1.67
--- grub-9999.ebuild 5 Jun 2012 19:02:50 -0000 1.66
+++ grub-9999.ebuild 9 Jun 2012 04:47:30 -0000 1.67
@@ -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 @@
# 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 @@
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() {
1.211 sys-boot/grub/ChangeLog
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?rev=1.211&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?rev=1.211&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?r1=1.210&r2=1.211
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v
retrieving revision 1.210
retrieving revision 1.211
diff -u -r1.210 -r1.211
--- ChangeLog 5 Jun 2012 19:02:50 -0000 1.210
+++ ChangeLog 9 Jun 2012 04:47:30 -0000 1.211
@@ -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@g.o> grub-9999.ebuild:
+ Stub out autopoint before calling eautoreconf.
05 Jun 2012; Mike Gilbert <floppym@g.o> grub-9999.ebuild:
Call autoreconf directly (via autogen.sh) since eautoreconf insists on callign
|
|