800917b5a2
- Update to Xen 4.1.2_rc2 c/s 23152 - bnc#716695 - domUs using tap devices will not start updated multi-xvdp.patch - Upstream patches from Jan 23803-intel-pmu-models.patch 23800-x86_64-guest-addr-range.patch 23795-intel-ich10-quirk.patch 23804-x86-IPI-counts.patch - bnc#706106 - Inconsistent reporting of VM names during migration xend-migration-domname-fix.patch - bnc#712823 - L3:Xen guest does not start reliable when rebooted xend-vcpu-affinity-fix.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=143
27 lines
1.2 KiB
Diff
27 lines
1.2 KiB
Diff
Index: xen-4.1.2-testing/tools/xenstore/Makefile
|
|
===================================================================
|
|
--- xen-4.1.2-testing.orig/tools/xenstore/Makefile
|
|
+++ xen-4.1.2-testing/tools/xenstore/Makefile
|
|
@@ -58,6 +58,7 @@ $(CLIENTS_DOMU): xenstore
|
|
|
|
xenstore: xenstore_client.o $(LIBXENSTORE)
|
|
$(CC) $(CFLAGS) $(LDFLAGS) $< -L. -lxenstore $(SOCKET_LIBS) -o $@
|
|
+ $(CC) $(CFLAGS) $(LDFLAGS) -Wl,--build-id=uuid $< -L. -lxenstore $(SOCKET_LIBS) -o domu-$@
|
|
|
|
xenstore-control: xenstore_control.o $(LIBXENSTORE)
|
|
$(CC) $(CFLAGS) $(LDFLAGS) $< -L. -lxenstore $(SOCKET_LIBS) -o $@
|
|
@@ -106,10 +107,11 @@ install: all
|
|
$(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 /usr/bin/xenstore $(DESTDIR)/usr/bin/$${c} ; \
|
|
done
|
|
+ $(INSTALL_PROG) domu-xenstore $(DESTDIR)/bin
|
|
for client in $(CLIENTS_DOMU); do \
|
|
- $(INSTALL_PROG) $$client $(DESTDIR)/bin/$${client/domu-}; \
|
|
+ ln -fs /bin/domu-xenstore $(DESTDIR)/bin/$${client/domu-}; \
|
|
done
|
|
$(INSTALL_DIR) $(DESTDIR)$(LIBDIR)
|
|
$(INSTALL_PROG) libxenstore.so.$(MAJOR).$(MINOR) $(DESTDIR)$(LIBDIR)
|