diff options
author | Travis Tilley <lv@gentoo.org> | 2004-08-11 19:38:53 +0000 |
---|---|---|
committer | Travis Tilley <lv@gentoo.org> | 2004-08-11 19:38:53 +0000 |
commit | 156c9b2e508c832a0574d257e2438071cb6924e6 (patch) | |
tree | 77df09db3c90ccd8810ce0035cbaf87a1d6df1e4 /sys-boot/grub | |
parent | Patch to fix MSN vulnerability, should fix Bug #60034 (Manifest recommit) (diff) | |
download | gentoo-2-156c9b2e508c832a0574d257e2438071cb6924e6.tar.gz gentoo-2-156c9b2e508c832a0574d257e2438071cb6924e6.tar.bz2 gentoo-2-156c9b2e508c832a0574d257e2438071cb6924e6.zip |
simplify multilib check
Diffstat (limited to 'sys-boot/grub')
-rw-r--r-- | sys-boot/grub/grub-0.94-r1.ebuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sys-boot/grub/grub-0.94-r1.ebuild b/sys-boot/grub/grub-0.94-r1.ebuild index 7afdde0f5fcb..91c08b3acc4b 100644 --- a/sys-boot/grub/grub-0.94-r1.ebuild +++ b/sys-boot/grub/grub-0.94-r1.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.94-r1.ebuild,v 1.10 2004/06/24 22:34:51 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-0.94-r1.ebuild,v 1.11 2004/08/11 19:38:53 lv Exp $ inherit mount-boot eutils flag-o-matic gcc @@ -19,11 +19,7 @@ DEPEND=">=sys-libs/ncurses-5.2-r5 PROVIDE="virtual/bootloader" src_unpack() { - if use amd64 - then - ( has_m64 && has_m32) || \ - die "please re-emerge gcc with USE=multilib FEATURES=-sandbox" - fi + has_m32 || die "your compiler seems to be unable to compile 32bit code. if you are on amd64, make sure you compile gcc with USE=multilib FEATURES=-sandbox" unpack ${A} cd ${S} |