diff options
author | Mike Frysinger <vapier@gentoo.org> | 2014-03-15 19:56:24 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2014-03-15 19:56:24 +0000 |
commit | dabb07e4d6aed08cbc06f1e4a6c061126a770a27 (patch) | |
tree | 1b2e495dea80da9a21d720b11dd4c29946089200 /sys-boot | |
parent | Install emacs man page under the same name as the binary. Remove old. (diff) | |
download | gentoo-2-dabb07e4d6aed08cbc06f1e4a6c061126a770a27.tar.gz gentoo-2-dabb07e4d6aed08cbc06f1e4a6c061126a770a27.tar.bz2 gentoo-2-dabb07e4d6aed08cbc06f1e4a6c061126a770a27.zip |
Avoid -maccumulate-outgoing-args on ia64 systems #503210 by Dennis Schridde.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/gnu-efi/ChangeLog | 7 | ||||
-rw-r--r-- | sys-boot/gnu-efi/gnu-efi-3.0u.ebuild | 9 |
2 files changed, 12 insertions, 4 deletions
diff --git a/sys-boot/gnu-efi/ChangeLog b/sys-boot/gnu-efi/ChangeLog index 1428577c7683..80fe441c332d 100644 --- a/sys-boot/gnu-efi/ChangeLog +++ b/sys-boot/gnu-efi/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-boot/gnu-efi -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/ChangeLog,v 1.23 2013/07/07 15:19:32 ago Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/ChangeLog,v 1.24 2014/03/15 19:56:24 vapier Exp $ + + 15 Mar 2014; Mike Frysinger <vapier@gentoo.org> gnu-efi-3.0u.ebuild: + Avoid -maccumulate-outgoing-args on ia64 systems #503210 by Dennis Schridde. 07 Jul 2013; Agostino Sarubbo <ago@gentoo.org> gnu-efi-3.0s.ebuild: Stable for ia64, wrt bug #450908 diff --git a/sys-boot/gnu-efi/gnu-efi-3.0u.ebuild b/sys-boot/gnu-efi/gnu-efi-3.0u.ebuild index 84a65eaaeff5..87c229ce79ec 100644 --- a/sys-boot/gnu-efi/gnu-efi-3.0u.ebuild +++ b/sys-boot/gnu-efi/gnu-efi-3.0u.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0u.ebuild,v 1.1 2013/07/03 14:14:03 chithanh Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0u.ebuild,v 1.2 2014/03/15 19:56:24 vapier Exp $ EAPI=5 @@ -29,6 +29,11 @@ QA_EXECSTACK="usr/*/lib*efi.a:* usr/*/crt*.o" src_prepare() { EPATCH_OPTS="-p1" epatch "${WORKDIR}"/*.diff + if ! use amd64 && ! use x86 ; then + sed -i \ + -e '/CPPFLAGS/s:-maccumulate-outgoing-args::' \ + Make.defaults || die #503210 + fi } _emake() { |