summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof Knapik <knapsu@gmail.com>2021-02-16 19:10:59 +0100
committersfan5 <sfan5@live.de>2021-02-16 22:22:11 +0100
commitabd0009b7a6ecef7ebc8cd956c494c22b77f0dd3 (patch)
tree51d9a12059775f8c9ceb28da6e23fbb3a167e5c1
parentabc1380522f81223d09c19f2ad378948f80a9e2b (diff)
downloadmpv-build-abd0009b7a6ecef7ebc8cd956c494c22b77f0dd3.tar.bz2
mpv-build-abd0009b7a6ecef7ebc8cd956c494c22b77f0dd3.tar.xz
Call waf with python3 everywhere
-rwxr-xr-xscripts/mpv-clean2
-rwxr-xr-xscripts/mpv-config2
-rwxr-xr-xscripts/mpv-install2
-rwxr-xr-xscripts/mpv-uninstall2
4 files changed, 4 insertions, 4 deletions
diff --git a/scripts/mpv-clean b/scripts/mpv-clean
index 0202c8c..6f483e3 100755
--- a/scripts/mpv-clean
+++ b/scripts/mpv-clean
@@ -2,7 +2,7 @@
test -e mpv || exit 0
cd mpv
-./waf distclean
+python3 ./waf distclean
# waf might pick up some old-configure/makefile produced files
# also, waf clean won't remove the old binary
rm -f DOCS/man/*/mpv.1 version.h input/input_conf.h video/out/vdpau_template.c demux/ebml_types.h demux/ebml_defs.c video/out/gl_video_shaders.h video/out/x11_icon.inc sub/osd_font.h player/lua/defaults.inc player/lua/assdraw.inc player/lua/osc.inc mpv
diff --git a/scripts/mpv-config b/scripts/mpv-config
index 397c513..0c2a537 100755
--- a/scripts/mpv-config
+++ b/scripts/mpv-config
@@ -21,4 +21,4 @@ esac
echo Using mpv options: $OPTIONS
cd "$BUILD"/mpv
-./waf configure $OPTIONS
+python3 ./waf configure $OPTIONS
diff --git a/scripts/mpv-install b/scripts/mpv-install
index cb22a37..d79ca0b 100755
--- a/scripts/mpv-install
+++ b/scripts/mpv-install
@@ -2,4 +2,4 @@
set -e
cd mpv
-./waf install
+python3 ./waf install
diff --git a/scripts/mpv-uninstall b/scripts/mpv-uninstall
index 3a4384e..645c45f 100755
--- a/scripts/mpv-uninstall
+++ b/scripts/mpv-uninstall
@@ -2,4 +2,4 @@
set -e
cd mpv
-./waf uninstall
+python3 ./waf uninstall