]> git.sesse.net Git - x264/blobdiff - version.sh
Replace "git-command" with "git command" in version.sh for git 1.6 support
[x264] / version.sh
index 37b9908fa9ccae005135c84684de9e6647b7ee64..9439702c45b4538c57110011c28a748bf727cae2 100755 (executable)
@@ -1,14 +1,14 @@
 #!/bin/sh
-git-rev-list HEAD | sort > config.git-hash
+git rev-list HEAD | sort > config.git-hash
 LOCALVER=`wc -l config.git-hash | awk '{print $1}'`
 if [ $LOCALVER \> 1 ] ; then
-    VER=`git-rev-list origin/master | sort | join config.git-hash - | wc -l | awk '{print $1}'`
+    VER=`git rev-list origin/master | sort | join config.git-hash - | wc -l | awk '{print $1}'`
     if [ $VER != $LOCALVER ] ; then
         VER="$VER+$(($LOCALVER-$VER))"
-    elif git-status | grep -q "modified:" ; then
+    elif git status | grep -q "modified:" ; then
         VER="${VER}M"
     fi
-    VER="$VER $(git-rev-list HEAD -n 1 | head -c 7)"
+    VER="$VER $(git rev-list HEAD -n 1 | head -c 7)"
     echo "#define X264_VERSION \" r$VER\"" >> config.h
 else
     echo "#define X264_VERSION \"\"" >> config.h