f9b3d85b1e
* xen/arm: Fully initialise struct membanks_hdr fields * build: Set DATE to SOURCE_DATE_EPOCH if available (for reproducible builds) * x86: Add Support for Paging-Write Feature * x86/time: introduce command line option to select wallclock * x86/time: prefer CMOS over EFI_GET_TIME * xentrace: free CPU mask string before overwriting pointer * xl: properly dispose of vTPM struct instance * xl: properly dispose of libxl_dominfo struct instances * Various documentation fixes and adjustments * Various MISRA compliance improvements. OBS-URL: https://build.opensuse.org/package/show/Virtualization/xen?expand=0&rev=871
31 lines
870 B
Diff
31 lines
870 B
Diff
--- a/tools/xs-clients/Makefile
|
|
+++ b/tools/xs-clients/Makefile
|
|
@@ -29,7 +29,7 @@ all: $(TARGETS)
|
|
clients: xenstore $(CLIENTS) xenstore-control
|
|
|
|
$(CLIENTS): xenstore
|
|
- ln -f xenstore $@
|
|
+ ln -sf xenstore $@
|
|
|
|
xenstore: xenstore_client.o
|
|
$(CC) $(LDFLAGS) $^ $(LDLIBS) -o $@ $(APPEND_LDFLAGS)
|
|
@@ -54,7 +54,7 @@ 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 -sf xenstore $(DESTDIR)$(bindir)/$${c} ; \
|
|
done
|
|
|
|
.PHONY: uninstall
|
|
--- a/tools/xenstored/Makefile
|
|
+++ b/tools/xenstored/Makefile
|
|
@@ -32,6 +32,7 @@ TAGS:
|
|
install: all
|
|
$(INSTALL_DIR) $(DESTDIR)$(sbindir)
|
|
$(INSTALL_PROG) xenstored $(DESTDIR)$(sbindir)
|
|
+ $(INSTALL_DIR) $(DESTDIR)$(bindir)
|
|
|
|
.PHONY: uninstall
|
|
uninstall:
|