diff options
author | Chris Bainbridge <chrb@gentoo.org> | 2005-12-07 15:35:47 +0000 |
---|---|---|
committer | Chris Bainbridge <chrb@gentoo.org> | 2005-12-07 15:35:47 +0000 |
commit | ca593debb461213b5443dabd9107998c5495d564 (patch) | |
tree | 20425e92d99410229cf7d51713a29f711411eec5 /app-emulation | |
parent | 0.9.5 version bump. (diff) | |
download | gentoo-2-ca593debb461213b5443dabd9107998c5495d564.tar.gz gentoo-2-ca593debb461213b5443dabd9107998c5495d564.tar.bz2 gentoo-2-ca593debb461213b5443dabd9107998c5495d564.zip |
Fix CFLAGS for hardened bug #114716
(Portage version: 2.0.51.22-r3)
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/xen/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/xen/xen-3.0.0.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/app-emulation/xen/ChangeLog b/app-emulation/xen/ChangeLog index 694363883f75..84818d2ce58f 100644 --- a/app-emulation/xen/ChangeLog +++ b/app-emulation/xen/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/xen # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/ChangeLog,v 1.16 2005/12/06 15:12:41 chrb Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/ChangeLog,v 1.17 2005/12/07 15:35:47 chrb Exp $ + + 07 Dec 2005; <chrb@gentoo.org> xen-3.0.0.ebuild: + Fix CFLAGS for hardened bug #114716 *xen-3.0.0 (06 Dec 2005) diff --git a/app-emulation/xen/xen-3.0.0.ebuild b/app-emulation/xen/xen-3.0.0.ebuild index b8047ef100bf..7dc547c0fed3 100644 --- a/app-emulation/xen/xen-3.0.0.ebuild +++ b/app-emulation/xen/xen-3.0.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/xen-3.0.0.ebuild,v 1.1 2005/12/06 15:12:41 chrb Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/xen-3.0.0.ebuild,v 1.2 2005/12/07 15:35:47 chrb Exp $ inherit mount-boot flag-o-matic @@ -58,10 +58,10 @@ src_compile() { myopt="${myopt} debug=y" fi - filter-flags -fPIE -fstack-protector if ! use cflags; then unset CFLAGS fi + filter-flags -fPIE -fstack-protector make ${myopt} -C xen || die "compiling xen failed" make ${myopt} -C tools || die "compiling tools failed" |