diff options
-rw-r--r-- | sys-boot/grub-static/ChangeLog | 6 | ||||
-rw-r--r-- | sys-boot/grub-static/grub-static-0.97-r10.ebuild | 6 |
2 files changed, 9 insertions, 3 deletions
diff --git a/sys-boot/grub-static/ChangeLog b/sys-boot/grub-static/ChangeLog index cda13df11804..5c8d477d0a80 100644 --- a/sys-boot/grub-static/ChangeLog +++ b/sys-boot/grub-static/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-boot/grub-static # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub-static/ChangeLog,v 1.28 2011/02/21 19:46:16 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub-static/ChangeLog,v 1.29 2011/02/24 09:22:18 robbat2 Exp $ + + 24 Feb 2011; Robin H. Johnson <robbat2@gentoo.org> + grub-static-0.97-r10.ebuild: + Provide advanced option for hanno to help with system rescues. 21 Feb 2011; Markos Chandras <hwoarang@gentoo.org> grub-static-0.97-r10.ebuild: diff --git a/sys-boot/grub-static/grub-static-0.97-r10.ebuild b/sys-boot/grub-static/grub-static-0.97-r10.ebuild index 95456654c976..f30297bec9c8 100644 --- a/sys-boot/grub-static/grub-static-0.97-r10.ebuild +++ b/sys-boot/grub-static/grub-static-0.97-r10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub-static/grub-static-0.97-r10.ebuild,v 1.4 2011/02/21 19:46:16 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub-static/grub-static-0.97-r10.ebuild,v 1.5 2011/02/24 09:22:18 robbat2 Exp $ # XXX: we need to review menu.lst vs grub.conf handling. We've been converting # all systems to grub.conf (and symlinking menu.lst to grub.conf), but @@ -39,7 +39,9 @@ pkg_setup() { src_install() { cp -a "${WORKDIR}"/* "${D}"/ - run_test_grub "${D}"/sbin/grub && einfo "New grub can run on your system, good!" + if [[ -z "${I_KNOW_WHAT_I_AM_DOING}" ]]; then + run_test_grub "${D}"/sbin/grub && einfo "New grub can run on your system, good!" + fi } run_test_grub() { |