summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKacper Michajłow <kasper93@gmail.com>2023-09-05 22:35:22 +0200
committerDudemanguy <random342@airmail.cc>2023-09-07 13:48:43 +0000
commitbe116366f256e853300e4494c46803eb9e779311 (patch)
treec2a0d56935f8df2a16b07b212f081a344f5c711d
parentbfa7a69e11a2d1b1f696247528c409fdb5fb3cf6 (diff)
downloadmpv-build-master.tar.bz2
mpv-build-master.tar.xz
scripts/mpv-config: remove -Bsymbolic linker flagHEADmaster
It shouldn't be added unconditionally and with all the fragile checks if it is supported it is way better to handle it in the meson itself. See also: https://github.com/mpv-player/mpv/pull/12346 Fixes: https://github.com/mpv-player/mpv-build/issues/215 https://github.com/haasn/libplacebo/issues/198
-rwxr-xr-xscripts/mpv-config7
1 files changed, 0 insertions, 7 deletions
diff --git a/scripts/mpv-config b/scripts/mpv-config
index 829ac50..99432f7 100755
--- a/scripts/mpv-config
+++ b/scripts/mpv-config
@@ -11,13 +11,6 @@ if test -f "$BUILD"/mpv_options ; then
unset -v IFS
fi
-if "$BUILD"/scripts/test-libmpv; then
- platform=$(uname | tr '[:upper:]' '[:lower:]')
- case "$platform" in
- *bsd*|*linux*|*solaris*) OPTIONS="-Dc_link_args='-Wl,-Bsymbolic'" ;;
- esac
-fi
-
case "$PKG_CONFIG_PATH" in
'')
export PKG_CONFIG_PATH="$BUILD/build_libs/lib/pkgconfig"