From 7fe727555d187dc7c7400da25ff0a63d3986a29a Mon Sep 17 00:00:00 2001 From: Leo Izen Date: Wed, 7 Jun 2023 17:09:27 -0400 Subject: [PATCH] bootstrap.py: update waf to 2.0.25 Fixes some minor bugs in waf. --- bootstrap.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bootstrap.py b/bootstrap.py index 4b9fd26c1a..143851135c 100755 --- a/bootstrap.py +++ b/bootstrap.py @@ -5,10 +5,10 @@ import os, sys, stat, hashlib, subprocess from urllib.request import urlopen, URLError -WAFRELEASE = "waf-2.0.24" +WAFRELEASE = "waf-2.0.25" WAFURLS = ["https://waf.io/" + WAFRELEASE, "https://www.freehackers.org/~tnagy/release/" + WAFRELEASE] -SHA256HASH = "93909bca823a675f9f40af7c65b24887c3a3c0efdf411ff1978ba827194bdeb0" +SHA256HASH = "21199cd220ccf60434133e1fd2ab8c8e5217c3799199c82722543970dc8e38d5" if os.path.exists("waf"): wafver = subprocess.check_output([sys.executable, './waf', '--version']).decode()