summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
Diffstat (limited to 'cscript')
-rw-r--r--cscript8
1 files changed, 7 insertions, 1 deletions
diff --git a/cscript b/cscript
index 47956b6a1..3824603ec 100644
--- a/cscript
+++ b/cscript
@@ -238,7 +238,13 @@ def make_spec(filename, version, target):
print >>f,'/usr/bin/gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :'
def dependencies(target):
- return (('ffmpeg-cdist', '2e977e1'),
+
+ if target.platform == 'linux':
+ ffmpeg_options = { 'shared': False }
+ else:
+ ffmpeg_options = {}
+
+ return (('ffmpeg-cdist', '2e977e1', ffmpeg_options),
('libdcp', 'v1.2.3'),
('libsub', 'v1.1.4'))