fixed the 'Makefile' to install 'docs/debian.conf' as 'conf.d/00-debian.conf'

This commit is contained in:
Jordi Sanfeliu 2015-03-02 13:15:38 +01:00
parent d287a5c074
commit 04d9d773d0
2 changed files with 4 additions and 2 deletions

View File

@ -52,6 +52,8 @@
- Fixes a character shifted to the left in certain 'hplog' outputs. [#78]
- Fixed the 'process' graph in Multihost mode.
(thanks to Jeff Hendricks, jeffrey_hendricks AT hotmail.com for pointing this out)
- Fixed the 'Makefile' to install 'docs/debian.conf' as 'conf.d/00-debian.conf'.
[#79]
- Small cosmetic changes.

View File

@ -154,7 +154,7 @@ install-debian:
$(INSTALL_DIR) "$(DESTDIR)$(INITDIR_OTHER)"
$(INSTALL_PROGRAM) docs/$(PN)-deb.init "$(DESTDIR)$(INITDIR_OTHER)/$(PN)"
$(INSTALL_DIR) "$(DESTDIR)$(CONFDIR)/$(PN)/conf.d"
$(INSTALL_DATA) docs/debian.conf "$(DESTDIR)$(CONFDIR)/$(PN)/conf.d/debian.conf"
$(INSTALL_DATA) docs/debian.conf "$(DESTDIR)$(CONFDIR)/$(PN)/conf.d/00-debian.conf"
install-redhat:
$(Q)echo -e '\033[1;32mInstalling redhat sysv service...\033[0m'
@ -203,7 +203,7 @@ uninstall-upstart:
uninstall-debian:
$(RM) "$(DESTDIR)$(INITDIR_OTHER)/$(PN)"
$(RM) "$(DESTDIR)$(CONFDIR)/$(PN)/conf.d/debian.conf"
$(RM) "$(DESTDIR)$(CONFDIR)/$(PN)/conf.d/00-debian.conf"
uninstall-redhat:
$(RM) "$(DESTDIR)$(INITDIR_RHEL)/$(PN)"