diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-09-10 20:39:41 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-09-10 22:58:06 +0100 |
| commit | eaff6fa8392bf7a58f88b9da4aaba86d00bf6c97 (patch) | |
| tree | c0cb485b52687e32f0afdc5fab831af0bcd3b382 /cscript | |
| parent | 2a6726e6f7287becc09286d6c0251630527fac4f (diff) | |
Use distro's FFmpeg on Arch.
Diffstat (limited to 'cscript')
| -rw-r--r-- | cscript | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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')) |
