From b35a062e61b1ddf33b0dca50f268baf37a52bffa Mon Sep 17 00:00:00 2001 From: Pavel Borzenkov Date: Wed, 5 Oct 2011 13:28:17 +0400 Subject: [PATCH] Fix 'make uninstall' command We should remove zathura.pc from $PREFIX/lib/pkgconfig, not the directory itself. Signed-off-by: Pavel Borzenkov Signed-off-by: Sebastian Ramacher --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 86d3403..d057347 100644 --- a/Makefile +++ b/Makefile @@ -101,7 +101,7 @@ uninstall: $(ECHO) removing desktop file $(QUIET)rm -f ${DESTDIR}${DESKTOPPREFIX}/${PROJECT}.desktop $(ECHO) removing pkgconfig file - $(QUIET)rm -f ${DESTDIR}${PREFIX}/lib/pkgconfig + $(QUIET)rm -f ${DESTDIR}${PREFIX}/lib/pkgconfig/${PROJECT}.pc -include $(wildcard .depend/*.dep)