summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorKevin Mitchell <kevmitch@gmail.com>2023-01-23 00:48:54 -0800
committerKevin Mitchell <kevmitch@gmail.com>2023-01-23 21:53:48 -0800
commit7b34395fa4b4136adbac39189db7b04a90089b0e (patch)
tree8d13a1b8d15970ab790e15d23101fe7830bc5928 /scripts
parent1779b9c4c2d8a493c374d42e3ae7ecaaa43f3347 (diff)
downloadmpv-build-7b34395fa4b4136adbac39189db7b04a90089b0e.tar.bz2
mpv-build-7b34395fa4b4136adbac39189db7b04a90089b0e.tar.xz
debian: adapt to mpv meson switch
The options passed through mpv-config have different syntax. --confdir is no longer necessary. Rename $WAFFLAGS to $MESONFLAGS. Use the mpv-install script with appropriate --destdir. Remove the unused DOCS and TOOLS variables.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/mpv-install4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mpv-install b/scripts/mpv-install
index ae321f4..ad337bc 100755
--- a/scripts/mpv-install
+++ b/scripts/mpv-install
@@ -3,7 +3,7 @@ set -e
cd mpv
if [ "$BUILDSYSTEM" = "waf" ]; then
- python3 ./waf install
+ python3 ./waf install "$@"
else
- meson install -C build
+ meson install -C build "$@"
fi