diff options
author | Daniel Baumann <daniel@debian.org> | 2010-04-18 04:12:02 +0200 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2011-03-09 19:17:06 +0100 |
commit | e9e577094a9d9a1242fd3e50dc48042c3c9fcbf0 (patch) | |
tree | 62f1d97ee32c54a7d3c51086b3fcdb50badcb00d /cgi/Makefile | |
parent | 5ef970eedbdd897028a63fbc55885928a566caa9 (diff) | |
download | vyos-live-build-e9e577094a9d9a1242fd3e50dc48042c3c9fcbf0.tar.gz vyos-live-build-e9e577094a9d9a1242fd3e50dc48042c3c9fcbf0.zip |
Updating uninstall and reinstall targets in cgi/Makefile.
Diffstat (limited to 'cgi/Makefile')
-rw-r--r-- | cgi/Makefile | 9 |
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 - |