Skip to content
This repository has been archived by the owner on Jan 15, 2019. It is now read-only.

Commit

Permalink
fix missing config-sample on make fullinstall
Browse files Browse the repository at this point in the history
IssueID #113
  • Loading branch information
andurin committed Jul 1, 2009
1 parent 07f84e6 commit 84555d9
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ all:
cd $(SRC_MODULE) && $(MAKE); \
fi

if [ x$(USE_IDOUTILS) = xyes ]; then \
@if [ x$(USE_IDOUTILS) = xyes ]; then \
cd $(SRC_IDOUTILS) && $(MAKE); \
fi

Expand Down Expand Up @@ -286,19 +286,22 @@ install-webconf:
@echo ""

install-idoutils:
cd $(SRC_IDOUTILS) && $(MAKE) $@

@echo ""
@echo "*** IDOUtils installed ***"
@echo ""
@if [ x$(USE_IDOUTILS) = xyes ]; then \
cd $(SRC_IDOUTILS) && $(MAKE) $@ ;\
fi
@if [ x$(USE_IDOUTILS) = xyes ]; then \
echo "" ;\
echo "*** IDOUtils installed ***" ;\
echo "" ;\
fi

install-init: install-daemoninit

install-daemoninit:
$(INSTALL) -m 755 -d $(INIT_OPTS) $(DESTDIR)$(INIT_DIR)
$(INSTALL) -m 755 $(INIT_OPTS) daemon-init $(DESTDIR)$(INIT_DIR)/icinga

if [ x$(USE_IDOUTILS) = xyes ]; then \
@if [ x$(USE_IDOUTILS) = xyes ]; then \
$(INSTALL) -m 755 $(INIT_OPTS) rc.ido2db $(DESTDIR)$(INIT_DIR)/ido2db ;\
fi

Expand All @@ -316,7 +319,7 @@ install-commandmode:
@echo ""


fullinstall: install install-init install-commandmode install-webconf
fullinstall: install install-init install-commandmode install-webconf install-config install-idoutils

# Uninstall is too destructive if base install directory is /usr, etc.
#uninstall:
Expand Down

0 comments on commit 84555d9

Please sign in to comment.