summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2021-02-08 11:04:46 +0100
committersfan5 <sfan5@live.de>2021-02-08 11:04:46 +0100
commitabc1380522f81223d09c19f2ad378948f80a9e2b (patch)
tree4c2f5f867f4cf9ab64a4dcd57fe6a77d96db3951 /scripts
parentecc117e0283f148612f639d05d4dd22b31b679d8 (diff)
downloadmpv-build-abc1380522f81223d09c19f2ad378948f80a9e2b.tar.bz2
mpv-build-abc1380522f81223d09c19f2ad378948f80a9e2b.tar.xz
Explicitly call waf with python3 everywhere
This saves Debian users from installing python-is-python3 and others from accidentally running waf with python2 (unsupported).
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/mpv-build2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mpv-build b/scripts/mpv-build
index 1e7ca7b..8b36c49 100755
--- a/scripts/mpv-build
+++ b/scripts/mpv-build
@@ -2,4 +2,4 @@
set -e
cd mpv
-./waf build $@
+python3 ./waf build $@