2021-08-15 04:19:14 +08:00
|
|
|
--- xen-4.15.0/tools/xenstore/Makefile.orig 2021-04-06 19:14:18.000000000 +0200
|
|
|
|
+++ xen-4.15.0/tools/xenstore/Makefile 2021-04-09 20:43:12.613910598 +0200
|
|
|
|
@@ -76,7 +76,7 @@
|
2013-02-10 16:52:17 +08:00
|
|
|
$(AR) cr $@ $^
|
|
|
|
|
|
|
|
$(CLIENTS): xenstore
|
|
|
|
- ln -f xenstore $@
|
|
|
|
+ ln -sf xenstore $@
|
|
|
|
|
2021-08-15 04:19:14 +08:00
|
|
|
xenstore: xenstore_client.o
|
|
|
|
$(CC) $< $(LDFLAGS) $(LDLIBS_libxenstore) $(LDLIBS_libxentoolcore) $(SOCKET_LIBS) -o $@ $(APPEND_LDFLAGS)
|
|
|
|
@@ -117,7 +117,7 @@
|
2016-02-21 08:53:52 +08:00
|
|
|
$(INSTALL_PROG) xenstore-control $(DESTDIR)$(bindir)
|
|
|
|
$(INSTALL_PROG) xenstore $(DESTDIR)$(bindir)
|
2013-02-10 16:52:17 +08:00
|
|
|
set -e ; for c in $(CLIENTS) ; do \
|
2016-02-21 08:53:52 +08:00
|
|
|
- ln -f $(DESTDIR)$(bindir)/xenstore $(DESTDIR)$(bindir)/$${c} ; \
|
|
|
|
+ ln -sf xenstore $(DESTDIR)$(bindir)/$${c} ; \
|
2013-02-10 16:52:17 +08:00
|
|
|
done
|
2021-08-15 04:19:14 +08:00
|
|
|
|
|
|
|
.PHONY: uninstall
|
|
|
|
@@ -144,7 +144,7 @@
|
2016-02-21 08:53:52 +08:00
|
|
|
$(INSTALL_DIR) $(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
|
|
|
|
|
2021-08-15 04:19:14 +08:00
|
|
|
-include $(DEPS_INCLUDE)
|