Substitute the conditional checks with a 'rm -f'
modified: Makefile
This commit is contained in:
parent
79cfbf0b71
commit
5ffdfb5e40
4
Makefile
4
Makefile
@ -43,5 +43,5 @@ install:
|
|||||||
cd $(BIN) && install * $(DESTDIR)$(bindir)
|
cd $(BIN) && install * $(DESTDIR)$(bindir)
|
||||||
|
|
||||||
uninstall:
|
uninstall:
|
||||||
if [ -f $(DESTDIR)$(bindir)/nms ]; then rm $(DESTDIR)$(bindir)/nms; fi;
|
rm -f $(DESTDIR)$(bindir)/nms;
|
||||||
if [ -f $(DESTDIR)$(bindir)/sneakers ]; then rm $(DESTDIR)$(bindir)/sneakers; fi;
|
rm -f $(DESTDIR)$(bindir)/sneakers;
|
||||||
|
Loading…
Reference in New Issue
Block a user