diff options
author | Ned Ludd <solar@gentoo.org> | 2004-03-17 19:01:21 +0000 |
---|---|---|
committer | Ned Ludd <solar@gentoo.org> | 2004-03-17 19:01:21 +0000 |
commit | 011dae249a212685c0162449a0d9089ef1bca527 (patch) | |
tree | 1718f3358f0e87cce5f07878cf35010e8cc823ae /sys-boot/grub/grub-0.94-r1.ebuild | |
parent | Pull old versions. (Manifest recommit) (diff) | |
download | gentoo-2-011dae249a212685c0162449a0d9089ef1bca527.tar.gz gentoo-2-011dae249a212685c0162449a0d9089ef1bca527.tar.bz2 gentoo-2-011dae249a212685c0162449a0d9089ef1bca527.zip |
grub will end up with a 100+ meg stage2 file if the user has LDFLAGS=-pie, so lets filter that flag out in the src_compile
Diffstat (limited to 'sys-boot/grub/grub-0.94-r1.ebuild')
-rw-r--r-- | sys-boot/grub/grub-0.94-r1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys-boot/grub/grub-0.94-r1.ebuild b/sys-boot/grub/grub-0.94-r1.ebuild index 115620b6da7d..eefd7e6713c2 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 Technologies, Inc. # 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.1 2004/02/26 07:38:10 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-0.94-r1.ebuild,v 1.2 2004/03/17 19:01:21 solar Exp $ inherit mount-boot eutils flag-o-matic gcc @@ -46,7 +46,7 @@ src_compile() { unset CFLAGS filter-flags -fstack-protector - + filter-ldflags -pie append-flags -DNDEBUG [ `gcc-major-version` -eq 3 ] && append-flags -minline-all-stringops use static && append-ldflags -static |