diff options
author | Grant Goodyear <g2boojum@gentoo.org> | 2001-10-31 22:59:32 +0000 |
---|---|---|
committer | Grant Goodyear <g2boojum@gentoo.org> | 2001-10-31 22:59:32 +0000 |
commit | ed41ba4eb0edb86ebbeb19ff2d276465684b9a88 (patch) | |
tree | 4515caf83e5d2d2ddf729d5a9bfd07306483b22f /sys-apps/grub | |
parent | Blocking grub-0.90-r{1,2} until I get it figured out. (diff) | |
download | historical-ed41ba4eb0edb86ebbeb19ff2d276465684b9a88.tar.gz historical-ed41ba4eb0edb86ebbeb19ff2d276465684b9a88.tar.bz2 historical-ed41ba4eb0edb86ebbeb19ff2d276465684b9a88.zip |
Fixed for splashimage. This revision is essentially a reversion to Hallski's
1.4 version of grub-0.90.
Diffstat (limited to 'sys-apps/grub')
-rw-r--r-- | sys-apps/grub/grub-0.90-r1.ebuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys-apps/grub/grub-0.90-r1.ebuild b/sys-apps/grub/grub-0.90-r1.ebuild index 12cfc5d46aad..92384ffa744d 100644 --- a/sys-apps/grub/grub-0.90-r1.ebuild +++ b/sys-apps/grub/grub-0.90-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2001 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author: Daniel Robbins <drobbins@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/sys-apps/grub/grub-0.90-r1.ebuild,v 1.1 2001/10/31 18:24:08 g2boojum Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/grub/grub-0.90-r1.ebuild,v 1.2 2001/10/31 22:59:32 g2boojum Exp $ S=${WORKDIR}/${P} DESCRIPTION="GNU GRUB boot loader" @@ -34,6 +34,9 @@ src_unpack() { src_compile() { ./configure --prefix=/usr --sbindir=/sbin --mandir=/usr/share/man --infodir=/usr/share/info --host=${CHOST} || die + # Have to do this since the configure-script seems a little broken + echo "#define VGA16 1" >> config.h + emake -e CPPFLAGS="-Wall -Wmissing-prototypes -Wunused -Wshadow -malign-jumps=1 -malign-loops=1 -malign-functions=1 -Wundef" || die } |