Xen 
 
Home About Xen.org Xen Xen Summit Wiki Mailing List Bug Tracker Xen Downloads
 
   
 

xen-changelog

[Xen-changelog] ioemu fixes: do not install into /usr/share/qemu as it c

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] ioemu fixes: do not install into /usr/share/qemu as it conflicts with
From: BitKeeper Bot <riel@xxxxxxxxxxx>
Date: Tue, 31 May 2005 15:52:06 +0000
Delivery-date: Tue, 31 May 2005 16:03:16 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: Xen Development List <xen-devel@xxxxxxxxxxxxxxxxxxx>
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
ChangeSet 1.1617, 2005/05/31 16:52:06+01:00, kaf24@xxxxxxxxxxxxxxxxxxxx

        ioemu fixes: do not install into /usr/share/qemu as it conflicts with
        real qemu installations. Also, do not link x86/64 with a special linker
        script -- breaks on SLES9 and ought to be unnecessary.
        The linker scripts and configuration/Makefile environment all need
        stripping out at some point.
        Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>



 configure               |    2 +-
 target-i386-dm/Makefile |    2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)


diff -Nru a/tools/ioemu/configure b/tools/ioemu/configure
--- a/tools/ioemu/configure     2005-05-31 12:04:07 -04:00
+++ b/tools/ioemu/configure     2005-05-31 12:04:07 -04:00
@@ -338,7 +338,7 @@
     prefix="usr/local"
 fi
 mandir="$installroot/$prefix/share/man"
-datadir="$installroot/$prefix/share/qemu"
+datadir="$installroot/$prefix/share/xen/qemu"
 docdir="$installroot/$prefix/share/doc/qemu"
 bindir="$installroot/$prefix/bin"
 configdir="$installroot/etc/xen"
diff -Nru a/tools/ioemu/target-i386-dm/Makefile 
b/tools/ioemu/target-i386-dm/Makefile
--- a/tools/ioemu/target-i386-dm/Makefile       2005-05-31 12:04:07 -04:00
+++ b/tools/ioemu/target-i386-dm/Makefile       2005-05-31 12:04:07 -04:00
@@ -304,7 +304,9 @@
 ifdef CONFIG_STATIC
 VL_LDFLAGS+=-static
 endif
+ifeq ($(XEN_TARGET_ARCH),x86_32)
 VL_LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(XEN_TARGET_ARCH).ld
+endif
 ifndef CONFIG_DARWIN
 ifndef CONFIG_WIN32
 VL_LIBS=-lutil

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] ioemu fixes: do not install into /usr/share/qemu as it conflicts with, BitKeeper Bot <=