From 26c4d4321ea0db863b8cc62655abed30c797fd70 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Sat, 7 Mar 2015 22:14:38 +0100 Subject: [PATCH] toolchain: remove hg requirement --- toolchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolchain.py b/toolchain.py index d60db87..38920d2 100755 --- a/toolchain.py +++ b/toolchain.py @@ -321,7 +321,7 @@ class Context(object): print("Missing requirement: cython is not installed") # check the basic tools - for tool in ("pkg-config", "autoconf", "automake", "libtool", "hg"): + for tool in ("pkg-config", "autoconf", "automake", "libtool"): if not sh.which(tool): print("Missing requirement: {} is not installed".format( tool))