2 git rev-list HEAD |
sort > config.git-hash
3 LOCALVER
=`wc -l config.git-hash | awk '{print $1}'`
4 if [ $LOCALVER \
> 1 ] ; then
5 VER
=`git rev-list origin/master | sort | join config.git-hash - | wc -l | awk '{print $1}'`
6 if [ $VER != $LOCALVER ] ; then
7 VER
="$VER+$(($LOCALVER-$VER))"
8 elif git status |
grep -q "modified:" ; then
11 VER
="$VER $(git rev-list HEAD -n 1 | head -c 7)"
12 echo "#define X264_VERSION \" r$VER\"" >> config.h
14 echo "#define X264_VERSION \"\"" >> config.h
18 API
=`grep '#define X264_BUILD' < x264.h | sed -e 's/.* \([1-9][0-9]*\).*/\1/'`
19 echo "#define X264_POINTVER \"0.$API.$VER\"" >> config.h