]> git.sesse.net Git - ffmpeg/blobdiff - version.sh
qdm2: Convert to the new bitstream reader
[ffmpeg] / version.sh
index 7911e461669434ebbb8654b999445eb77020d1da..4689627869c6dd7d5a2818738763ceafddfe42d5 100755 (executable)
@@ -2,7 +2,6 @@
 
 # check for git short hash
 revision=$(cd "$1" && git describe --always 2> /dev/null)
-test "$revision" && revision=git-$revision
 
 # no revision number found
 test "$revision" || revision=$(cd "$1" && cat RELEASE 2> /dev/null)
@@ -19,7 +18,7 @@ if [ -z "$2" ]; then
 fi
 
 NEW_REVISION="#define LIBAV_VERSION \"$version\""
-OLD_REVISION=$(cat version.h 2> /dev/null)
+OLD_REVISION=$(cat "$2" 2> /dev/null)
 
 # Update version.h only on revision changes to avoid spurious rebuilds
 if test "$NEW_REVISION" != "$OLD_REVISION"; then