diff options
author | 2004-08-11 19:38:53 +0000 | |
---|---|---|
committer | 2004-08-11 19:38:53 +0000 | |
commit | 55e69a88b4df44b76bda2902face387665b71f74 (patch) | |
tree | 495e4faf83379d337c9b84d95be18fcdf532d510 /sys-boot | |
parent | Patch to fix MSN vulnerability, should fix Bug #60034 (diff) | |
download | historical-55e69a88b4df44b76bda2902face387665b71f74.tar.gz historical-55e69a88b4df44b76bda2902face387665b71f74.tar.bz2 historical-55e69a88b4df44b76bda2902face387665b71f74.zip |
simplify multilib check
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/grub/Manifest | 2 | ||||
-rw-r--r-- | sys-boot/grub/grub-0.94-r1.ebuild | 8 |
2 files changed, 3 insertions, 7 deletions
diff --git a/sys-boot/grub/Manifest b/sys-boot/grub/Manifest index 2bef9bc9d126..fe37ee5f1b87 100644 --- a/sys-boot/grub/Manifest +++ b/sys-boot/grub/Manifest @@ -1,4 +1,4 @@ -MD5 190b98e809d4c62e26f0e57a323e9352 grub-0.94-r1.ebuild 3356 +MD5 b33a30955cdcfd9e2f0fbc11ef8c1945 grub-0.94-r1.ebuild 3388 MD5 d2c5f3ba084defee6f806a4eab5d3e36 grub-0.92-r1.ebuild 2526 MD5 c84677ff43292be0d976cdd861bae0f4 ChangeLog 9320 MD5 fc967cbfa21d5efadccfe2146dfa03df grub-0.93.20030118.ebuild 2512 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} |