[SCM] libav/experimental: kill error messages from failed svn revision extraction commands

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:02:21 UTC 2013


The following commit has been merged in the experimental branch:
commit 7a68f7fa22861be70e983db01dad9960a762031a
Author: Måns Rullgård <mans at mansr.com>
Date:   Mon Jun 18 19:43:11 2007 +0000

    kill error messages from failed svn revision extraction commands
    
    Originally committed as revision 9363 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/version.sh b/version.sh
index e6190a8..e4abf72 100755
--- a/version.sh
+++ b/version.sh
@@ -1,9 +1,8 @@
 #!/bin/sh
 
 svn_revision=`cd "$1" && LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2`
-test $svn_revision || svn_revision=`cd "$1" && grep revision .svn/entries | \
-                                    cut -d '"' -f2 2> /dev/null`
-test $svn_revision || svn_revision=`cd "$1" && sed -n '/^dir$/{n;p;q}' < .svn/entries`
+test $svn_revision || svn_revision=`cd "$1" && grep revision .svn/entries 2>/dev/null | cut -d '"' -f2`
+test $svn_revision || svn_revision=`cd "$1" && sed -n -e '/^dir$/{n;p;q}' .svn/entries 2>/dev/null`
 test $svn_revision || svn_revision=UNKNOWN
 
 NEW_REVISION="#define FFMPEG_VERSION \"SVN-r$svn_revision\""

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list