1
mirror of https://github.com/mpv-player/mpv synced 2024-09-28 17:52:52 +02:00

build: prevent installation of client API example

This was never intended to be installed; waf just picked it up
automagically. There's also a closed ticket on github where someone
complains that the program "simple" is installed, and I didn't realize
at this point that it was actually installed by default when enabling
the client API.
This commit is contained in:
wm4 2014-06-06 19:43:53 +02:00
parent 43d46a28fe
commit 60e0833f1f

View File

@ -486,6 +486,7 @@ def build(ctx):
includes = [ctx.bldnode.abspath(), ctx.srcnode.abspath()], includes = [ctx.bldnode.abspath(), ctx.srcnode.abspath()],
use = "mpv", use = "mpv",
features = "c cprogram", features = "c cprogram",
install_path = None
) )
if ctx.env.DEST_OS == 'win32': if ctx.env.DEST_OS == 'win32':