From 00aa0c6cd307be538641939810ccc90d1926f907 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Fri, 25 May 2018 17:04:22 +0100 Subject: [PATCH] tools/tests/depriv: Install depriv-fd-checker in our private libexec directory MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit 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 --- tools/tests/depriv/Makefile | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) 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) -- 2.30.2