[SCM] libav/experimental: version.sh: use standard sed syntax
siretart at users.alioth.debian.org
siretart at users.alioth.debian.org
Sun Jun 30 16:50:08 UTC 2013
The following commit has been merged in the experimental branch:
commit 7f6d9b30890161d40b4bf8917f5cff7517029423
Author: Måns Rullgård <mans at mansr.com>
Date: Sun Aug 16 15:51:47 2009 +0000
version.sh: use standard sed syntax
Originally committed as revision 19655 to svn://svn.ffmpeg.org/ffmpeg/trunk
diff --git a/version.sh b/version.sh
index 9809d6d..250caef 100755
--- a/version.sh
+++ b/version.sh
@@ -4,7 +4,10 @@
revision=$(cat snapshot_version 2> /dev/null)
test $revision || revision=$(cd "$1" && LC_ALL=C svn info 2> /dev/null | grep Revision | cut -d' ' -f2)
test $revision || revision=$(cd "$1" && grep revision .svn/entries 2>/dev/null | cut -d '"' -f2)
-test $revision || revision=$(cd "$1" && sed -n -e '/^dir$/{n;p;q}' .svn/entries 2>/dev/null)
+test $revision || revision=$(cd "$1" && sed -n -e '/^dir$/{n
+p
+q
+}' .svn/entries 2>/dev/null)
test $revision && revision=SVN-r$revision
# check for git short hash
--
Libav/FFmpeg packaging
More information about the pkg-multimedia-commits
mailing list