From 3ce21c9b2cbe424a0b4382404f8732e8414d8d81 Mon Sep 17 00:00:00 2001 From: Saager Mhatre Date: Sat, 2 Oct 2021 08:25:25 -0400 Subject: [PATCH] Update `uninstall` target in Makefile to respect env vars (#56) `uninstall` now `rm`s from `${DESTDIR}${PREFIX}/bin` instead of defaulting to `/usr/local/bin` --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index edda1e2..186f6f1 100644 --- a/Makefile +++ b/Makefile @@ -34,7 +34,7 @@ update-force : rm -f has uninstall : - rm -f /usr/local/bin/has + rm -f $(DESTDIR)$(PREFIX)/bin/has .PHONY: test install uninstall update