mirror of https://github.com/mpv-player/mpv
bootstrap.py: update waf to 2.0.25
Fixes some minor bugs in waf.
This commit is contained in:
parent
1fbaf4602e
commit
7fe727555d
|
@ -5,10 +5,10 @@
|
||||||
import os, sys, stat, hashlib, subprocess
|
import os, sys, stat, hashlib, subprocess
|
||||||
from urllib.request import urlopen, URLError
|
from urllib.request import urlopen, URLError
|
||||||
|
|
||||||
WAFRELEASE = "waf-2.0.24"
|
WAFRELEASE = "waf-2.0.25"
|
||||||
WAFURLS = ["https://waf.io/" + WAFRELEASE,
|
WAFURLS = ["https://waf.io/" + WAFRELEASE,
|
||||||
"https://www.freehackers.org/~tnagy/release/" + WAFRELEASE]
|
"https://www.freehackers.org/~tnagy/release/" + WAFRELEASE]
|
||||||
SHA256HASH = "93909bca823a675f9f40af7c65b24887c3a3c0efdf411ff1978ba827194bdeb0"
|
SHA256HASH = "21199cd220ccf60434133e1fd2ab8c8e5217c3799199c82722543970dc8e38d5"
|
||||||
|
|
||||||
if os.path.exists("waf"):
|
if os.path.exists("waf"):
|
||||||
wafver = subprocess.check_output([sys.executable, './waf', '--version']).decode()
|
wafver = subprocess.check_output([sys.executable, './waf', '--version']).decode()
|
||||||
|
|
Loading…
Reference in New Issue