summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2012-01-21 12:01:44 (EST)
committer P. J. McDermott <pjm@nac.net>2012-01-21 12:01:44 (EST)
commita54f1aa0967ed31611b87480236146e6ecbd661d (patch)
tree59aeae35e31d21ca1b82199751a7d1dba7a5a8c3 /Makefile.in
parentb576a3239fd1a971cac72d75f98dc690da6846c9 (diff)
Suppress 'rm' errors on uninstall.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in20
1 files changed, 10 insertions, 10 deletions
diff --git a/Makefile.in b/Makefile.in
index fbda315..c2c1e8b 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -83,22 +83,22 @@ install: all
.PHONY: uninstall
uninstall:
@printf ' RM opkbuild\n'
- @rm "$(DESTDIR)/$(BINDIR)/opkbuild"
+ @rm -f "$(DESTDIR)/$(BINDIR)/opkbuild"
@printf ' RM oh-strip\n'
- @rm "$(DESTDIR)/$(BINDIR)/oh-strip"
+ @rm -f "$(DESTDIR)/$(BINDIR)/oh-strip"
@printf ' RM oh-installfiles\n'
- @rm "$(DESTDIR)/$(BINDIR)/oh-installfiles"
+ @rm -f "$(DESTDIR)/$(BINDIR)/oh-installfiles"
@printf ' RM oh-buildopk\n'
- @rm "$(DESTDIR)/$(BINDIR)/oh-buildopk"
+ @rm -f "$(DESTDIR)/$(BINDIR)/oh-buildopk"
@printf ' RM controlfields\n'
- @rm "$(DESTDIR)/$(LIBDIR)/opkhelper/controlfields"
+ @rm -f "$(DESTDIR)/$(LIBDIR)/opkhelper/controlfields"
@printf ' RM opkbuild.1\n'
- @rm "$(DESTDIR)/$(MANDIR)/man1/opkbuild.1"
+ @rm -f "$(DESTDIR)/$(MANDIR)/man1/opkbuild.1"
@printf ' RM oh-strip.1\n'
- @rm "$(DESTDIR)/$(MANDIR)/man1/oh-strip.1"
+ @rm -f "$(DESTDIR)/$(MANDIR)/man1/oh-strip.1"
@printf ' RM oh-installfiles.1\n'
- @rm "$(DESTDIR)/$(MANDIR)/man1/oh-installfiles.1"
+ @rm -f "$(DESTDIR)/$(MANDIR)/man1/oh-installfiles.1"
@printf ' RM oh-gencontrol.1\n'
- @rm "$(DESTDIR)/$(MANDIR)/man1/oh-gencontrol.1"
+ @rm -f "$(DESTDIR)/$(MANDIR)/man1/oh-gencontrol.1"
@printf ' RM oh-buildopk.1\n'
- @rm "$(DESTDIR)/$(MANDIR)/man1/oh-buildopk.1"
+ @rm -f "$(DESTDIR)/$(MANDIR)/man1/oh-buildopk.1"