diff options
author | Robert Moss <robmoss@gentoo.org> | 2004-09-05 20:40:39 +0000 |
---|---|---|
committer | Robert Moss <robmoss@gentoo.org> | 2004-09-05 20:40:39 +0000 |
commit | 20cc1df78f4cce65c6ea889101ead401da133a49 (patch) | |
tree | 75327876876700e6ad956e6fc3dc026237c84845 /sys-boot/grub | |
parent | Corrected digest (diff) | |
download | historical-20cc1df78f4cce65c6ea889101ead401da133a49.tar.gz historical-20cc1df78f4cce65c6ea889101ead401da133a49.tar.bz2 historical-20cc1df78f4cce65c6ea889101ead401da133a49.zip |
The grub binary lives in /sbin, not /usr/sbin...
Diffstat (limited to 'sys-boot/grub')
-rw-r--r-- | sys-boot/grub/ChangeLog | 5 | ||||
-rw-r--r-- | sys-boot/grub/Manifest | 4 | ||||
-rw-r--r-- | sys-boot/grub/grub-0.95.20040823.ebuild | 4 |
3 files changed, 8 insertions, 5 deletions
diff --git a/sys-boot/grub/ChangeLog b/sys-boot/grub/ChangeLog index 8076bfc68c75..93f6b3e52961 100644 --- a/sys-boot/grub/ChangeLog +++ b/sys-boot/grub/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-boot/grub # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.23 2004/08/26 20:52:02 robmoss Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.24 2004/09/05 20:40:39 robmoss Exp $ + + 05 Sep 2004; <rmoss@gentoo.org> grub-0.95.20040823.ebuild: + The grub binary is in /sbin, not /usr/sbin. Fixing. 26 Aug 2004; <rmoss@gentoo.org> grub-0.95.20040823.ebuild: gnuconfig belongs in src_unpack, not src_compile. Thanks tigger :-) diff --git a/sys-boot/grub/Manifest b/sys-boot/grub/Manifest index 520ff862ddd1..fe53267c0faf 100644 --- a/sys-boot/grub/Manifest +++ b/sys-boot/grub/Manifest @@ -1,10 +1,10 @@ MD5 b33a30955cdcfd9e2f0fbc11ef8c1945 grub-0.94-r1.ebuild 3388 MD5 d2c5f3ba084defee6f806a4eab5d3e36 grub-0.92-r1.ebuild 2526 MD5 31d6e6382d1e08bfd4037a99fb29a2d0 grub-0.94-r2.ebuild 3501 -MD5 3bed1df0bf8a2e821fefdef7b8f89510 ChangeLog 10023 +MD5 8c0771de7827d524863e4fe3692e8c5d ChangeLog 10139 MD5 fc967cbfa21d5efadccfe2146dfa03df grub-0.93.20030118.ebuild 2512 MD5 b0eacbb6edb031d87f33ed0b08f5916d metadata.xml 226 -MD5 ff5b1d8db9efdfdae37beb9a6311cc37 grub-0.95.20040823.ebuild 3518 +MD5 ee102937698f054961316cff9c27bfe4 grub-0.95.20040823.ebuild 3514 MD5 3a653f86b731c2a17482d25f57b2d041 files/digest-grub-0.95.20040823 149 MD5 cdd6c89d48982ecd544c0b4774755afd files/splash.xpm.gz 33856 MD5 e9e73f57d9f9d5c550792980b2635f94 files/grub-0.94-gcc3.4.patch 479 diff --git a/sys-boot/grub/grub-0.95.20040823.ebuild b/sys-boot/grub/grub-0.95.20040823.ebuild index 6f015f1c8797..b77fb8d2fa43 100644 --- a/sys-boot/grub/grub-0.95.20040823.ebuild +++ b/sys-boot/grub/grub-0.95.20040823.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-0.95.20040823.ebuild,v 1.3 2004/08/26 20:52:02 robmoss Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-0.95.20040823.ebuild,v 1.4 2004/09/05 20:40:39 robmoss Exp $ inherit mount-boot eutils flag-o-matic gcc gnuconfig @@ -118,7 +118,7 @@ pkg_postinst() { cp -p /lib/grub/*/* /boot/grub [ -e /boot/grub/grub.conf ] \ - && /usr/sbin/grub \ + && /sbin/grub \ --batch \ --device-map=/boot/grub/device.map \ < /boot/grub/grub.conf > /dev/null 2>&1 |