summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-09-10 20:39:41 +0100
committerCarl Hetherington <cth@carlh.net>2018-09-10 22:58:06 +0100
commiteaff6fa8392bf7a58f88b9da4aaba86d00bf6c97 (patch)
treec0cb485b52687e32f0afdc5fab831af0bcd3b382 /cscript
parent2a6726e6f7287becc09286d6c0251630527fac4f (diff)
Use distro's FFmpeg on Arch.
Diffstat (limited to 'cscript')
-rw-r--r--cscript5
1 files changed, 4 insertions, 1 deletions
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'))