2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-13 17:26:34 +00:00

Makefile: configDb added

git-svn-id: https://svn.fhem.de/fhem/trunk@5474 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2014-04-07 15:52:51 +00:00
parent 00f699e6d5
commit fcc4006eec

View File

@ -38,7 +38,7 @@ install:
@-$(foreach DIR,$(DEST), if [ ! -e $(DIR) ]; then mkdir -p $(DIR); fi; )
@echo "- fixing permissions in fhem.cfg"
perl contrib/commandref_join.pl
@find FHEM docs www contrib -type f -print | xargs chmod 644
@find FHEM configDB.pm docs www contrib -type f -print | xargs chmod 644
@cp fhem.cfg fhem.cfg.install
@-if [ "$(RELATIVE_PATH)" != YES ]; then\
perl -pi -e 's,modpath \.,modpath $(MODDIR),' fhem.cfg.install; \
@ -51,7 +51,7 @@ install:
@cp fhem.cfg.install $(RETCDIR)/fhem.cfg
@rm fhem.cfg.install
@cp fhem.pl $(RBINDIR)
@cp -rp FHEM docs www contrib $(RMODDIR)
@cp -rp FHEM docs www contrib configDB.pm $(RMODDIR)
@cp -rp README_DEMO.txt demolog fhem.cfg.demo $(RDEMODIR)
@cp docs/fhem.man $(RMANDIR)/fhem.pl.1
@gzip -f -9 $(RMANDIR)/fhem.pl.1
@ -88,7 +88,7 @@ dist:
mkdir .f
cp -r fhem.pl fhem.cfg CHANGED HISTORY Makefile README.SVN\
demolog fhem.cfg.demo README_DEMO.txt\
FHEM contrib docs www webfrontend .f
FHEM configDB.pm contrib docs www webfrontend .f
mkdir .f/log
touch .f/log/empty_file.txt
(cd .f; perl contrib/commandref_join.pl)