From eaff6fa8392bf7a58f88b9da4aaba86d00bf6c97 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Mon, 10 Sep 2018 20:39:41 +0100 Subject: [PATCH] Use distro's FFmpeg on Arch. --- cscript | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cscript b/cscript index 51c5f2146..6e7ecdbec 100644 --- a/cscript +++ b/cscript @@ -325,8 +325,11 @@ def dependencies(target): if target.platform == 'windows' and target.version == 'xp': deps = [('ffmpeg-cdist', '5783efa', ffmpeg_options)] - else: + elif target.platform != 'linux' or target.distro != 'arch': deps = [('ffmpeg-cdist', '27f25fb', ffmpeg_options)] + else: + # Use distro-provided FFmpeg on Arch + deps = [] deps.append(('libdcp', '8940450')) deps.append(('libsub', '1bc45ae')) -- 2.30.2