summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2015-01-02 16:13:07 +0100
committerHiltjo Posthuma <hiltjo@codemadness.org>2015-01-02 16:13:07 +0100
commitc6c2d9bbee5234fe76af3076b3f474cf3c1209fa (patch)
tree1f8a62f66fe235aa68c1773663b63ee478643233 /Makefile
parent889c341caa7be15219274bbeea80de86e01ee93d (diff)
Makefile: fix uninstall
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a184097..f8ac20e 100644
--- a/Makefile
+++ b/Makefile
@@ -138,13 +138,13 @@ install: all
uninstall:
@echo removing executable file from ${DESTDIR}${PREFIX}/bin
- for f in $(BIN) $(SCRIPTS); do @rm -f ${DESTDIR}${PREFIX}/bin/$$f; done
+ for f in $(BIN) $(SCRIPTS); do rm -f ${DESTDIR}${PREFIX}/bin/$$f; done
@echo removing example files from ${DESTDIR}${PREFIX}/share/${NAME}
@rm -f \
${DESTDIR}${PREFIX}/share/${NAME}/sfeedrc.example \
${DESTDIR}${PREFIX}/share/${NAME}/style.css
@-rmdir ${DESTDIR}${PREFIX}/share/${NAME}
@echo removing manual pages from ${DESTDIR}${MANPREFIX}/man1
- for m in $(MAN1); do @rm -f ${DESTDIR}${MANPREFIX}/man1/$$m; done
+ for m in $(MAN1); do rm -f ${DESTDIR}${MANPREFIX}/man1/$$m; done
.PHONY: all options clean dist install uninstall