summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-02-21 10:18:37 +0100
committerwm4 <wm4@nowhere>2014-02-21 10:18:37 +0100
commit89d2d3bb3c36e02d9b7de90b3d4b918469fb1221 (patch)
tree6dd62ad2176bedacdd117f0c377f22c073d305b4
parentd24c1a8c049ead607933e84b3158a05caafe91f0 (diff)
downloadmpv-build-89d2d3bb3c36e02d9b7de90b3d4b918469fb1221.tar.bz2
mpv-build-89d2d3bb3c36e02d9b7de90b3d4b918469fb1221.tar.xz
Force libass version to 0.10.2
Now by default ./update will get 0.10.2 instead of the latest release. This works around a problem with the missing yasm version check in the libass build system.
-rwxr-xr-xupdate11
1 files changed, 10 insertions, 1 deletions
diff --git a/update b/update
index ef9d171..40c637f 100755
--- a/update
+++ b/update
@@ -60,13 +60,22 @@ do_releasetag()
)
}
+do_fixedref()
+{
+ (
+ cd "$1"
+ git checkout --detach "$2"
+ )
+}
+
do_releasetag_all()
{
set -ex
do_clone_all
do_releasetag ffmpeg 'n'
do_releasetag fribidi ''
- do_releasetag libass ''
+ #do_releasetag libass ''
+ do_fixedref libass refs/tags/0.10.2
do_releasetag mpv 'v'
}