summaryrefslogtreecommitdiffstats
path: root/wscript_build.py
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-03-11 23:56:19 +0100
committerwm4 <wm4@nowhere>2014-03-11 23:56:19 +0100
commit40855d6c12e736dc2bd4291d7edd58fee0a1400d (patch)
tree44e5c0beea19606483f2ce476a834587727ccf43 /wscript_build.py
parent8737ca95820e872a707e8363af2f74f0c7d795e3 (diff)
downloadmpv-40855d6c12e736dc2bd4291d7edd58fee0a1400d.tar.bz2
mpv-40855d6c12e736dc2bd4291d7edd58fee0a1400d.tar.xz
build: rename --enable-shared switch
Rename it to --enable-libmpv-shared. The option name didn't really tell much. When we add the possibility to create a static library, it would also be bad if that were named --enable-static (because it would sound like it does what --static-build does).
Diffstat (limited to 'wscript_build.py')
-rw-r--r--wscript_build.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wscript_build.py b/wscript_build.py
index e60d8efecc..48e06d705b 100644
--- a/wscript_build.py
+++ b/wscript_build.py
@@ -438,7 +438,7 @@ def build(ctx):
**cprog_kwargs
)
- if ctx.dependency_satisfied('shared'):
+ if ctx.dependency_satisfied('libmpv-shared'):
ctx.load("syms")
ctx(
target = "mpv",