summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Baumann <daniel@debian.org>2010-04-18 04:12:02 +0200
committerDaniel Baumann <daniel@debian.org>2010-04-18 04:12:02 +0200
commit2b996047dff7a28012ba2c0b953d46bb5bb99773 (patch)
tree62f1d97ee32c54a7d3c51086b3fcdb50badcb00d
parent61467268bde9bbd58a7dc8c9aec851383aaf7328 (diff)
downloadvyos-live-build-2b996047dff7a28012ba2c0b953d46bb5bb99773.tar.gz
vyos-live-build-2b996047dff7a28012ba2c0b953d46bb5bb99773.zip
Updating uninstall and reinstall targets in cgi/Makefile.
-rw-r--r--cgi/Makefile9
1 files changed, 4 insertions, 5 deletions
diff --git a/cgi/Makefile b/cgi/Makefile
index 555f8448e..f3ee40fc6 100644
--- a/cgi/Makefile
+++ b/cgi/Makefile
@@ -11,10 +11,9 @@ install:
chown www-data:www-data $(DESTDIR)/var/log/live
uninstall:
- rm $(DESTDIR)/usr/lib/cgi-bin/live-helper
- rm $(DESTDIR)/etc/cron.d/live-helper.cgi
- rm $(DESTDIR)/etc/default/live-helper.cgi
- rm $(DESTDIR)/etc/logrotate.d/live-helper.cgi
+ rm -f $(DESTDIR)/usr/lib/cgi-bin/live-helper
+ rm -f $(DESTDIR)/etc/cron.d/live-helper.cgi
+ rm -f $(DESTDIR)/etc/default/live-helper.cgi
+ rm -f $(DESTDIR)/etc/logrotate.d/live-helper.cgi
reinstall: uninstall install
-