From 9859c2a5555b70f903f01d0ad80b4adc42d51b4f Mon Sep 17 00:00:00 2001 From: Emanuele Torre Date: Tue, 16 Jun 2020 16:17:08 +0200 Subject: [PATCH] Build: remove slashes after DESTDIR from commands in uninstall target --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 97cab1f..7430e09 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ install: all install -D -m 644 ${PROG}.1 ${DESTDIR}${MANPREFIX}/man1/${PROG}.1 uninstall: - rm -f ${DESTDIR}/${PREFIX}/bin/${PROG} - rm -f ${DESTDIR}/${MANPREFIX}/man1/${PROG}.1 + rm -f ${DESTDIR}${PREFIX}/bin/${PROG} + rm -f ${DESTDIR}${MANPREFIX}/man1/${PROG}.1 .PHONY: all clean install uninstall -- 2.20.1