From 04076cd5df2a47c61432a380a167da3d4f089256 Mon Sep 17 00:00:00 2001 From: Andre Cerqueira Date: Sun, 26 May 2013 15:45:31 -0300 Subject: [PATCH] fixed Makefile uninstall target for man files --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ad9c632..376c58b 100644 --- a/Makefile +++ b/Makefile @@ -39,8 +39,8 @@ uninstall: rm -f $(DESTDIR)$(PREFIX)/$(BIN); \ ) @$(foreach MAN, $(MAN_PAGES), \ - echo "... uninstalling $(DESTDIR)$(MANPREFIX)/$(MAN)"; \ - rm -f $(DESTDIR)$(MANPREFIX)/$(MAN); \ + echo "... uninstalling $(DESTDIR)$(MANPREFIX)/$(notdir $(MAN))"; \ + rm -f $(DESTDIR)$(MANPREFIX)/$(notdir $(MAN)); \ ) rm -f $(DESTDIR)/etc/bash_completion.d/git-extras