f18f683ba6
xen-4.7.0-testing-src.tar.bz2 - Dropped: xen-4.6.1-testing-src.tar.bz2 55f7f9d2-libxl-slightly-refine-pci-assignable-add-remove-handling.patch 5628fc67-libxl-No-emulated-disk-driver-for-xvdX-disk.patch 5644b756-x86-HVM-don-t-inject-DB-with-error-code.patch 5649bcbe-libxl-relax-readonly-check-introduced-by-XSA-142-fix.patch hotplug-Linux-block-performance-fix.patch set-mtu-from-bridge-for-tap-interface.patch xendomains-libvirtd-conflict.patch xsa154.patch xsa155-xen-0001-xen-Add-RING_COPY_REQUEST.patch xsa155-xen-0002-blktap2-Use-RING_COPY_REQUEST.patch xsa155-xen-0003-libvchan-Read-prod-cons-only-once.patch xsa170.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=414
31 lines
1.3 KiB
Diff
31 lines
1.3 KiB
Diff
---
|
|
tools/xenstore/Makefile | 6 ++++--
|
|
1 file changed, 4 insertions(+), 2 deletions(-)
|
|
|
|
Index: xen-4.7.0-testing/tools/xenstore/Makefile
|
|
===================================================================
|
|
--- xen-4.7.0-testing.orig/tools/xenstore/Makefile
|
|
+++ xen-4.7.0-testing/tools/xenstore/Makefile
|
|
@@ -86,6 +86,7 @@ $(CLIENTS_DOMU): xenstore
|
|
|
|
xenstore: xenstore_client.o $(LIBXENSTORE)
|
|
$(CC) $< $(LDFLAGS) $(LDLIBS_libxenstore) $(SOCKET_LIBS) -o $@ $(APPEND_LDFLAGS)
|
|
+ $(CC) $< $(CFLAGS) $(LDFLAGS) -Wl,--build-id=uuid -L. -lxenstore $(SOCKET_LIBS) -o domu-$@
|
|
|
|
xenstore-control: xenstore_control.o $(LIBXENSTORE)
|
|
$(CC) $< $(LDFLAGS) $(LDLIBS_libxenstore) $(SOCKET_LIBS) -o $@ $(APPEND_LDFLAGS)
|
|
@@ -139,10 +140,11 @@ endif
|
|
$(INSTALL_PROG) xenstore-control $(DESTDIR)$(bindir)
|
|
$(INSTALL_PROG) xenstore $(DESTDIR)$(bindir)
|
|
set -e ; for c in $(CLIENTS) ; do \
|
|
- ln -f $(DESTDIR)$(bindir)/xenstore $(DESTDIR)$(bindir)/$${c} ; \
|
|
+ ln -fs xenstore $(DESTDIR)/usr/bin/$${c} ; \
|
|
done
|
|
+ $(INSTALL_PROG) domu-xenstore $(DESTDIR)/bin
|
|
for client in $(CLIENTS_DOMU); do \
|
|
- $(INSTALL_PROG) $$client $(DESTDIR)$(bindir)/$${client/domu-}; \
|
|
+ ln -fs domu-xenstore $(DESTDIR)/bin/$${client/domu-}; \
|
|
done
|
|
$(INSTALL_DIR) $(DESTDIR)$(libdir)
|
|
$(INSTALL_SHLIB) libxenstore.so.$(MAJOR).$(MINOR) $(DESTDIR)$(libdir)
|