[x264-devel] [PATCH] git-command is deprecated. Use git command instead

Anders Ossowicki arkanoid at exherbo.org
Sun Oct 19 23:18:06 CEST 2008


---
 version.sh |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/version.sh b/version.sh
index 37b9908..9439702 100755
--- a/version.sh
+++ b/version.sh
@@ -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
-- 
1.6.0.2



More information about the x264-devel mailing list