From 10bc4ec96b9a2cf6e5478ac241a34cf021faa44f Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Thu, 22 Feb 2018 14:08:11 -0800 Subject: [PATCH] Makefile: Drop man1 uninstall This should have happened in f4883dd2 (Makefile: do not install man1 files, 2017-11-08, #1129). It may have been missed due to the man1/man8 typo from e61c672a (Add missing man pages and bash completions for kpod, 2016-12-02, #230). Signed-off-by: W. Trevor King --- Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile b/Makefile index 1e097a13..3e552e32 100644 --- a/Makefile +++ b/Makefile @@ -168,9 +168,6 @@ uninstall: rm -f $(BINDIR)/crio rm -f $(LIBEXECDIR)/crio/conmon rm -f $(LIBEXECDIR)/crio/pause - for i in $(filter %.1,$(MANPAGES)); do \ - rm -f $(MANDIR)/man8/$$(basename $${i}); \ - done for i in $(filter %.5,$(MANPAGES)); do \ rm -f $(MANDIR)/man5/$$(basename $${i}); \ done