summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cscript4
1 files changed, 3 insertions, 1 deletions
diff --git a/cscript b/cscript
index 57277f727..2a369133f 100644
--- a/cscript
+++ b/cscript
@@ -575,7 +575,9 @@ def configure_options(target, options, for_package=False):
if target.platform == 'windows':
opt += f' --target-windows-{target.bits}'
elif target.platform == 'linux':
- opt += ' --static-dcpomatic --static-wxwidgets --static-ffmpeg --static-dcp --static-sub --static-cxml'
+ opt += ' --static-dcpomatic --static-wxwidgets --static-dcp --static-sub --static-cxml'
+ if target.distro != 'arch':
+ opt += ' --static-ffmpeg'
if target.distro == 'centos':
if target.version == '6.5':
opt += ' --static-boost --static-xmlpp'