From 5ddf22fc207d29ce2ebec1b76d5da8a32bac34d0 Mon Sep 17 00:00:00 2001 From: Lorenzo Torres Date: Mon, 1 Sep 2025 03:21:09 +0200 Subject: [PATCH] Fixed makefile uninstall target --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 852f678..dc6e094 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,7 @@ install: all chmod 644 ${DESTDIR}${MANPREFIX}/man1/sis.1 uninstall: - rm -f ${DESTDIR}${PREFIX}/bin/dwm\ - ${DESTDIR}${MANPREFIX}/man1/dwm.1 + rm -f ${DESTDIR}${PREFIX}/bin/sis\ + ${DESTDIR}${MANPREFIX}/man1/sis.1 .PHONY: all options clean dist install uninstall