From afe713c71c2b8812f5c9adf106bc510cfb8bed24 Mon Sep 17 00:00:00 2001 From: Martin Herkt Date: Wed, 20 Jun 2018 10:38:51 +0200 Subject: build: add static libraries to libmpv.pc --- wscript_build.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'wscript_build.py') diff --git a/wscript_build.py b/wscript_build.py index 2c8b8c300b..bdb92d322b 100644 --- a/wscript_build.py +++ b/wscript_build.py @@ -677,11 +677,15 @@ def build(ctx): _build_libmpv(False) def get_deps(): - res = "" + res = [] for k in ctx.env.keys(): - if k.startswith("LIB_") and k != "LIB_ST": - res += " ".join(["-l" + x for x in ctx.env[k]]) + " " - return res + if (k.startswith("LIB_") and k != "LIB_ST") \ + or (k.startswith("STLIB_") and k != "STLIB_ST" and k != "STLIB_MARKER"): + for l in ctx.env[k]: + if l in res: + res.remove(l) + res.append(l) + return " ".join(["-l" + l for l in res]) ctx( target = 'libmpv/mpv.pc', -- cgit v1.2.3