From 05a1659c18e774fcd1edc9f95a9939f472bbd093 Mon Sep 17 00:00:00 2001 From: Svend Sorensen Date: Sun, 14 Nov 2004 03:32:45 +0000 Subject: [PATCH] Fixed makefile uninstall handling of man pages. --- man/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man/Makefile b/man/Makefile index 1946525..4c5187a 100644 --- a/man/Makefile +++ b/man/Makefile @@ -24,8 +24,8 @@ install: all done uninstall: - -for i in $(TARGETS) ; do \ - rm -f $(DESTDIR)$(mandir)/man1/$$i ; \ + -for i in $(MANFILES) ; do \ + rm -f $(DESTDIR)$(mandir)/man1/`basename $$i .man`.1 ; \ done clean: