]> git.sesse.net Git - x264/blob - version.sh
Replace "git-command" with "git command" in version.sh for git 1.6 support
[x264] / version.sh
1 #!/bin/sh
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
9         VER="${VER}M"
10     fi
11     VER="$VER $(git rev-list HEAD -n 1 | head -c 7)"
12     echo "#define X264_VERSION \" r$VER\"" >> config.h
13 else
14     echo "#define X264_VERSION \"\"" >> config.h
15     VER="x"
16 fi
17 rm -f config.git-hash
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