Fix a bug in ruleset.mk that add a newline in hostname return
string.
git-svn-id: https://src.develer.com/svnoss/bertos/trunk@1478
38d2e660-2303-0410-9eaa-
f027e97ec537
buildnr=`sed <"$(BUILDREV_H)" -n -e 's/#define VERS_BUILD \([0-9][0-9]*\)/\1/p'`; \
fi; \
buildnr=`expr $$buildnr + 1`; \
- buildhost=`hostname`; \
+ buildhost=`hostname` | sed -n '1h;2,$H;${g;s/\n//g;p}'; \
echo "#define VERS_BUILD $$buildnr" >"$(BUILDREV_H)"; \
echo "#define VERS_HOST \"$$buildhost\"" >>"$(BUILDREV_H)"; \
echo "Building revision $$buildnr"