2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-05-03 13:45:36 +00:00

Makefile: bugfix in target "deb"

git-svn-id: https://svn.fhem.de/fhem/trunk@7887 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
betateilchen 2015-02-05 20:12:50 +00:00
parent 831a7c0505
commit 8d6eb0411a

View File

@ -105,7 +105,7 @@ deb:
find .f -name .#\* -print | xargs rm -f
find .f -type f -print | grep -v Makefile |\
xargs perl -pi -e 's/=VERS=/$(VERSN)/g;s/=DATE=/$(DATEN)/g'
perl -pi -e 's/my \$$release\s+=.*/my \$$release = "$(VERS)";/' .f/FHEM/98_fheminfo.pm
perl -pi -e 's/my \$$release\s+=.*/my \$$release = "$(VERS)";/' .f/$(MODDIR)/FHEM/98_fheminfo.pm
wget -qO .f/$(MODDIR)/FHEM/controls_fhem.txt http://fhem.de/fhemupdate/controls_fhem.txt
find .f -type f | xargs chmod 644
find .f -type d | xargs chmod 755