From mboxrd@z Thu Jan 1 00:00:00 1970 From: Juergen Gross Subject: [PATCH 3/9] xenstore: install init-xenstore-domain via make install Date: Fri, 11 Dec 2015 16:47:35 +0100 Message-ID: <1449848861-7700-4-git-send-email-jgross@suse.com> References: <1449848861-7700-1-git-send-email-jgross@suse.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1449848861-7700-1-git-send-email-jgross@suse.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: xen-devel@lists.xen.org, Ian.Campbell@citrix.com, ian.jackson@eu.citrix.com, stefano.stabellini@eu.citrix.com, wei.liu2@citrix.com Cc: Juergen Gross List-Id: xen-devel@lists.xenproject.org The program init-xenstore-domain to start a xenstore domain instead of the xenstored daemon is built, but not installed. Change that. Signed-off-by: Juergen Gross --- tools/xenstore/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/xenstore/Makefile b/tools/xenstore/Makefile index 1b4a494..8c8b116 100644 --- a/tools/xenstore/Makefile +++ b/tools/xenstore/Makefile @@ -153,6 +153,9 @@ endif $(INSTALL_DATA) include/compat/xs_lib.h $(DESTDIR)$(includedir)/xenstore-compat/xs_lib.h ln -sf xenstore-compat/xs.h $(DESTDIR)$(includedir)/xs.h ln -sf xenstore-compat/xs_lib.h $(DESTDIR)$(includedir)/xs_lib.h +ifeq ($(CONFIG_Linux),y) + $(INSTALL_PROG) init-xenstore-domain $(DESTDIR)$(LIBEXEC_BIN) +endif .PHONY: clients-install clients-install: clients -- 2.6.2