From: Ian Jackson Date: Fri, 25 May 2018 16:04:22 +0000 (+0100) Subject: tools/tests/depriv: Install depriv-fd-checker in our private libexec directory X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~3668 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=00aa0c6cd307be538641939810ccc90d1926f907;p=xen.git tools/tests/depriv: Install depriv-fd-checker in our private libexec directory osstest is going to want to call it, and should not be expected to fish it out of the build tree. Signed-off-by: Ian Jackson Reviewed-by: Roger Pau Monné Acked-by: Wei Liu --- diff --git a/tools/tests/depriv/Makefile b/tools/tests/depriv/Makefile index 643d2c50c1..11e07b7c03 100644 --- a/tools/tests/depriv/Makefile +++ b/tools/tests/depriv/Makefile @@ -23,8 +23,9 @@ LDLIBS += $(LDLIBS_libxendevicemodel) LDLIBS += $(LDLIBS_libxentoolcore) LDLIBS += $(LDLIBS_libxentoollog) -TARGETS-y := depriv-fd-checker -TARGETS := $(TARGETS-y) +INSTALL_PRIVBIN-y += depriv-fd-checker +INSTALL_PRIVBIN := $(INSTALL_PRIVBIN-y) +TARGETS += $(INSTALL_PRIVBIN) .PHONY: all all: build @@ -39,6 +40,12 @@ clean: .PHONY: distclean distclean: clean -install uninstall: +install: all + $(INSTALL_DIR) $(DESTDIR)$(LIBEXEC_BIN) + $(INSTALL_PROG) $(INSTALL_PRIVBIN) $(DESTDIR)$(LIBEXEC_BIN) + +.PHONY: uninstall +uninstall: + rm -f $(addprefix $(DESTDIR)$(LIBEXEC_BIN)/, $(INSTALL_PRIVBIN)) -include $(DEPS_INCLUDE)