diff options
author | wm4 <wm4@nowhere> | 2014-06-06 19:43:53 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2014-06-06 19:43:53 +0200 |
commit | 60e0833f1fe976b0bbb74aa60980bfb36d828dee (patch) | |
tree | 413f8004f7805e1eb4f617e0968ce9660883083e | |
parent | 43d46a28fe0afc773719ebebe28cc62c916d5cf9 (diff) | |
download | mpv-60e0833f1fe976b0bbb74aa60980bfb36d828dee.tar.bz2 mpv-60e0833f1fe976b0bbb74aa60980bfb36d828dee.tar.xz |
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.
-rw-r--r-- | wscript_build.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wscript_build.py b/wscript_build.py index ca1be85631..c5063f38d3 100644 --- a/wscript_build.py +++ b/wscript_build.py @@ -486,6 +486,7 @@ def build(ctx): includes = [ctx.bldnode.abspath(), ctx.srcnode.abspath()], use = "mpv", features = "c cprogram", + install_path = None ) if ctx.env.DEST_OS == 'win32': |