From 0839150873050964651303af3f835b32589d5743 Mon Sep 17 00:00:00 2001 From: Moritz Lipp Date: Wed, 14 Apr 2010 23:56:17 +0200 Subject: [PATCH] Fix make uninstall Correction of the uninstall section in the Makefile. Thanks to Laen. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4370813..e84ced5 100644 --- a/Makefile +++ b/Makefile @@ -72,6 +72,6 @@ install: all uninstall: @echo removing executeable file - @rm -f ${MANPREFIX}/bin/${PROJECT} + @rm -f ${DESTDIR}${MANPREFIX}/bin/${PROJECT} @echo removing manual page - @rm -f ${MANPREFIX}/man1/${PROJECT}.1 + @rm -f ${DESTDIR}${MANPREFIX}/man1/${PROJECT}.1