From fcc4006eec3e5fd5b3a9b852428b2a9851611922 Mon Sep 17 00:00:00 2001 From: rudolfkoenig <> Date: Mon, 7 Apr 2014 15:52:51 +0000 Subject: [PATCH] Makefile: configDb added git-svn-id: https://svn.fhem.de/fhem/trunk@5474 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fhem/Makefile b/fhem/Makefile index 539c756ac..c91028c3b 100644 --- a/fhem/Makefile +++ b/fhem/Makefile @@ -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)