diff options
author | Simon Horman <horms@verge.net.au> | 2020-12-21 13:14:06 +0100 |
---|---|---|
committer | Simon Horman <horms@verge.net.au> | 2021-04-02 12:11:45 +0200 |
commit | fa1d7d53b22732b30bc9536f311e8287c6d6ce97 (patch) | |
tree | c3f462c359b891d828898fb4ec8ad3b98a23cb3a | |
parent | 66d2b1a6ac4c9d006429bfe81c27b91700dfff66 (diff) |
build: uninstall kexec_test
kexec_test is installed but not uninstalled.
Correct this oversight.
Signed-off-by: Simon Horman <horms@verge.net.au>
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index dc7fb07..4fe1016 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 |