Makefile: switch out 'rm -f' with '$(RM)' to match previous invocations
authorMichael Reed <m.reed@mykolab.com>
Sun, 21 Sep 2014 22:34:33 +0000 (18:34 -0400)
committerMichael Reed <m.reed@mykolab.com>
Sun, 21 Sep 2014 22:34:33 +0000 (18:34 -0400)
Makefile

index 64ecee4..3c1715e 100644 (file)
--- 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