From 8b6e05adff3cfd760c6439b42d18126b715a1f2d Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Sun, 24 Nov 2013 22:21:17 +0100 Subject: build: add install_files call after the mpv target was defined This makes it work on cold compiles when there is no `build/` directory and one does ./waf configure && ./waf install (i.e.: no ./waf build). --- wscript_build.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'wscript_build.py') 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() -- cgit v1.2.3