summaryrefslogtreecommitdiffstats
path: root/wscript_build.py
diff options
context:
space:
mode:
Diffstat (limited to 'wscript_build.py')
-rw-r--r--wscript_build.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/wscript_build.py b/wscript_build.py
index 2c8e5b14ac..c1d5edcc4e 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -419,8 +419,6 @@ def build(ctx):
resources = [node.srcpath() for node in resources_nodes]
cprog_kwargs['mac_resources'] = resources
- ctx.install_files(ctx.env.BINDIR, 'mpv')
-
ctx(
target = "mpv",
source = ctx.filtered_sources(sources),
@@ -432,6 +430,9 @@ def build(ctx):
**cprog_kwargs
)
+ if ctx.dependency_satisfied('macosx-bundle'):
+ ctx.install_files(ctx.env.BINDIR, 'mpv')
+
if ctx.dependency_satisfied("vf-dlopen-filters"):
dlfilters = "showqscale telecine tile rectangle framestep \
ildetect".split()