From fa1d7d53b22732b30bc9536f311e8287c6d6ce97 Mon Sep 17 00:00:00 2001 From: Simon Horman Date: Mon, 21 Dec 2020 13:14:06 +0100 Subject: build: uninstall kexec_test kexec_test is installed but not uninstalled. Correct this oversight. Signed-off-by: Simon Horman --- Makefile.in | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index dc7fb07a..4fe10162 100644 --- a/Makefile.in +++ b/Makefile.in @@ -181,15 +181,19 @@ UNINSTALL_KDUMP = $(sbindir)/kdump UNINSTALL_KDUMP_MANPAGE = $(mandir)/man8/kdump.8 UNINSTALL_KEXEC = $(sbindir)/kexec UNINSTALL_KEXEC_MANPAGE = $(mandir)/man8/kexec.8 +UNINSTALL_KEXEC_TEST = $(pkglibdir)/kexec_test UNINSTALL_VMCORE_DMESG = $(sbindir)/vmcore-dmesg UNINSTALL_VMCORE_DMESG_MANPAGE = $(mandir)/man8/vmcore-dmesg.8 TARGETS:=$(BINARIES) $(MAN_PAGES) targets: $(TARGETS) +UNINSTALL_TARGETS_i386:=$(UNINSTALL_KEXEC_TEST) +UNINSTALL_TARGETS_x86_64:=$(UNINSTALL_KEXEC_TEST) UNINSTALL_TARGETS:=$(UNINSTALL_KDUMP) $(UNINSTALL_KDUMP_MANPAGE) \ $(UNINSTALL_KEXEC) $(UNINSTALL_KEXEC_MANPAGE) \ - $(UNINSTALL_VMCORE_DMESG) $(UNINSTALL_VMCORE_DMESG_MANPAGE) + $(UNINSTALL_VMCORE_DMESG) $(UNINSTALL_VMCORE_DMESG_MANPAGE) \ + $(UNINSTALL_TARGETS_$(ARCH)) uninstall-targets: $(UNINSTALL_TARGETS) Makefile: Makefile.in config.status -- cgit 1.2.3-korg