diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-04-27 12:51:21 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-04-27 12:51:21 +0000 |
commit | fd9dfb6a5ec6ca351881c98e914d44b263c0ff21 (patch) | |
tree | 158083526a6917db340ea0310feb5dba503d2a6a /app-emulation/xen/files | |
parent | Add a fix for uuidtools with Ruby 1.8.7's securerandom and make it install fo... (diff) | |
download | gentoo-2-fd9dfb6a5ec6ca351881c98e914d44b263c0ff21.tar.gz gentoo-2-fd9dfb6a5ec6ca351881c98e914d44b263c0ff21.tar.bz2 gentoo-2-fd9dfb6a5ec6ca351881c98e914d44b263c0ff21.zip |
Fix sandbox violation, http://bugzilla.xensource.com/bugzilla/show_bug.cgi?id=1405 Closes #259670
(Portage version: 2.2_rc31/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/xen/files')
-rw-r--r-- | app-emulation/xen/files/xen-3.3.0-unexported-target-fix.patch | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/app-emulation/xen/files/xen-3.3.0-unexported-target-fix.patch b/app-emulation/xen/files/xen-3.3.0-unexported-target-fix.patch new file mode 100644 index 000000000000..89f91a49a0d4 --- /dev/null +++ b/app-emulation/xen/files/xen-3.3.0-unexported-target-fix.patch @@ -0,0 +1,21 @@ +diff -Nru a/tools/ioemu-qemu-xen/xen-setup b/tools/ioemu-qemu-xen/xen-setup +--- a/tools/ioemu-qemu-xen/xen-setup 2008-08-22 17:56:41.000000000 +0800 ++++ b/tools/ioemu-qemu-xen/xen-setup 2009-02-20 10:55:37.000000000 +0800 +@@ -3,6 +3,8 @@ + + # git-clean -x -d && ./xen-setup && make prefix=/usr CMDLINE_CFLAGS='-O0 -g' -j4 && make install DESTDIR=`pwd`/dist/ prefix=/usr && rsync -a --stats --delete . thule:shadow/qemu-iwj.git/ && rsync -a --stats dist/. root@thule:/ + ++target=i386-dm ++ + rm -f $target/Makefile + rm -f $target/config.mak + rm -f config-host.mak +@@ -11,8 +13,6 @@ + + ./configure --disable-gfx-check --disable-gcc-check --disable-curses --disable-slirp "$@" --prefix=/usr + +-target=i386-dm +- + if [ "x$XEN_ROOT" != x ]; then + echo "XEN_ROOT=$XEN_ROOT" >>config-host.mak + fi |