From: Andrew Cooper Date: Tue, 7 Oct 2014 11:02:09 +0000 (+0100) Subject: tools/xenstore: Only create SBINDIR if it is to be used X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~4214 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3657f11bb8dab074e2397606c9f2eeb3e9a25e60;p=xen.git tools/xenstore: Only create SBINDIR if it is to be used Signed-off-by: Andrew Cooper CC: Ian Campbell CC: Ian Jackson CC: Wei Liu Acked-by: Ian Campbell --- diff --git a/tools/xenstore/Makefile b/tools/xenstore/Makefile index cb4ab427f5..bff9b25725 100644 --- a/tools/xenstore/Makefile +++ b/tools/xenstore/Makefile @@ -126,10 +126,10 @@ tarball: clean .PHONY: install install: all $(INSTALL_DIR) $(DESTDIR)$(BINDIR) - $(INSTALL_DIR) $(DESTDIR)$(SBINDIR) $(INSTALL_DIR) $(DESTDIR)$(INCLUDEDIR) $(INSTALL_DIR) $(DESTDIR)$(INCLUDEDIR)/xenstore-compat ifeq ($(XENSTORE_XENSTORED),y) + $(INSTALL_DIR) $(DESTDIR)$(SBINDIR) $(INSTALL_DIR) $(DESTDIR)$(XEN_LIB_STORED) $(INSTALL_PROG) xenstored $(DESTDIR)$(SBINDIR) endif