summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2017-03-31 17:32:09 +0200
committerwm4 <wm4@nowhere>2017-03-31 17:32:09 +0200
commite6a42d91829eefd7fa1b780e6cf2f1cb1eeee804 (patch)
treecf9ff37caa2c017ab45ff8e30e11391ff5e00d12
parentdf4e41f241c8560623843680e37b8e24d2f6ceaf (diff)
downloadmpv-build-e6a42d91829eefd7fa1b780e6cf2f1cb1eeee804.tar.bz2
mpv-build-e6a42d91829eefd7fa1b780e6cf2f1cb1eeee804.tar.xz
Disable fribidi fetching
It's not built by default either. Someone who wants to build fribidi with this can just uncommment all locations. Fixes #82.
-rwxr-xr-xupdate8
1 files changed, 4 insertions, 4 deletions
diff --git a/update b/update
index aa542a5..3b66763 100755
--- a/update
+++ b/update
@@ -17,7 +17,7 @@ do_clone()
do_clone_all()
{
do_clone "ffmpeg" "https://github.com/FFmpeg/FFmpeg.git"
- do_clone "fribidi" "http://anongit.freedesktop.org/git/fribidi/fribidi.git"
+ #do_clone "fribidi" "http://anongit.freedesktop.org/git/fribidi/fribidi.git"
do_clone "libass" "https://github.com/libass/libass.git"
do_clone "mpv" "https://github.com/mpv-player/mpv.git"
}
@@ -60,7 +60,7 @@ do_fixedref()
}
checkout_ffmpeg=do_gitmaster
-checkout_fribidi=do_releasetag
+#checkout_fribidi=do_releasetag
checkout_libass=do_gitmaster
checkout_mpv=do_gitmaster
@@ -69,7 +69,7 @@ checkout_all()
set -ex
do_clone_all
$checkout_ffmpeg ffmpeg 'n'
- $checkout_fribidi fribidi ''
+ #$checkout_fribidi fribidi ''
$checkout_libass libass
$checkout_mpv mpv 'v'
}
@@ -116,7 +116,7 @@ checkout_mpv=`select_branch mpv $checkout_mpv`
case "$1" in
--master)
checkout_ffmpeg=do_gitmaster
- checkout_fribidi=do_gitmaster
+ #checkout_fribidi=do_gitmaster
checkout_libass=do_gitmaster
checkout_mpv=do_gitmaster
;;