From 31f91305483a4efa430fe1ce181f62921c77e39f Mon Sep 17 00:00:00 2001 From: Michael Reed Date: Sun, 21 Sep 2014 18:34:33 -0400 Subject: [PATCH] Makefile: switch out 'rm -f' with '$(RM)' to match previous invocations --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 64ecee4..3c1715e 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ install: mdp install -m 755 mdp $(PREFIX)$(DESTDIR)/mdp uninstall: - rm -f $(PREFIX)$(DESTDIR)/mdp + $(RM) $(PREFIX)$(DESTDIR)/mdp .PHONY: all clean install uninstall -- 2.20.1