Makefile: bugfix in target "deb"

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

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