[x264-devel] commit: Replace "git-command" with "git command" in version.sh for git 1. 6 support (Anders Ossowicki )

git version control git at videolan.org
Fri Oct 31 16:57:55 CET 2008


x264 | branch: master | Anders Ossowicki <arkanoid at exherbo.org> | Thu Oct 23 22:36:11 2008 -0700| [d7df1a477b5e0e851d206e8c25da0b275ae0b7cc] | committer: Jason Garrett-Glaser 

Replace "git-command" with "git command" in version.sh for git 1.6 support

> http://git.videolan.org/gitweb.cgi/x264.git/?a=commit;h=d7df1a477b5e0e851d206e8c25da0b275ae0b7cc
---

 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



More information about the x264-devel mailing list