mirror of
https://github.com/mpv-player/mpv
synced 2024-12-27 17:42:17 +00:00
6eb59fea2f
Python 2 may not be present in the CI images in the future, but waf’s shebang line still uses its executable name. Explicitly call the right major version of the interpreter.
17 lines
364 B
Bash
Executable File
17 lines
364 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
python3 ./waf configure \
|
|
--enable-cdda \
|
|
--enable-dvbin \
|
|
--enable-dvdnav \
|
|
--enable-dvdread \
|
|
--enable-libarchive \
|
|
--enable-libmpv-shared \
|
|
--enable-libsmbclient \
|
|
--enable-manpage-build \
|
|
--enable-shaderc \
|
|
--enable-vulkan \
|
|
--enable-zsh-comp
|
|
python3 ./waf build --verbose
|