diff options
author | Chris Bainbridge <chrb@gentoo.org> | 2006-04-10 13:23:20 +0000 |
---|---|---|
committer | Chris Bainbridge <chrb@gentoo.org> | 2006-04-10 13:23:20 +0000 |
commit | cb2846a48d45326929b2196402ebc3dd567ff9fb (patch) | |
tree | 55e814418586142f8247d534a955f3e02fca3e92 /app-emulation | |
parent | Version bump. (diff) | |
download | gentoo-2-cb2846a48d45326929b2196402ebc3dd567ff9fb.tar.gz gentoo-2-cb2846a48d45326929b2196402ebc3dd567ff9fb.tar.bz2 gentoo-2-cb2846a48d45326929b2196402ebc3dd567ff9fb.zip |
fix pae, again, #124355
(Portage version: 2.1_pre7-r5)
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/xen/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/xen/xen-3.0.2.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/app-emulation/xen/ChangeLog b/app-emulation/xen/ChangeLog index 76a4a03423c8..b787e1c22a4d 100644 --- a/app-emulation/xen/ChangeLog +++ b/app-emulation/xen/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/xen # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/ChangeLog,v 1.35 2006/04/10 08:13:16 chrb Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/ChangeLog,v 1.36 2006/04/10 13:23:20 chrb Exp $ + + 10 Apr 2006; <chrb@gentoo.org> xen-3.0.2.ebuild: + fix pae, again, #124355 10 Apr 2006; <chrb@gentoo.org> xen-3.0.2.ebuild: remove sed fix, #129429 diff --git a/app-emulation/xen/xen-3.0.2.ebuild b/app-emulation/xen/xen-3.0.2.ebuild index 17c9e0523d34..cec9a8477663 100644 --- a/app-emulation/xen/xen-3.0.2.ebuild +++ b/app-emulation/xen/xen-3.0.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/xen-3.0.2.ebuild,v 1.2 2006/04/10 08:11:31 chrb Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen/xen-3.0.2.ebuild,v 1.3 2006/04/10 13:23:20 chrb Exp $ inherit mount-boot flag-o-matic @@ -42,7 +42,7 @@ src_unpack() { src_compile() { local myopt use debug && myopt="${myopt} debug=y" - use pae && myopt="${myopt} XEN_TARGET_X86_PAE=y" + use pae && myopt="${myopt} pae=y" if use custom-cflags; then filter-flags -fPIE -fstack-protector @@ -55,7 +55,7 @@ src_compile() { src_install() { local myopt - use pae && myopt="${myopt} XEN_TARGET_X86_PAE=y" + use pae && myopt="${myopt} pae=y" make DESTDIR=${D} ${myopt} install-xen \ || die "install failed" |