diff options
author | Florian Dold <florian@dold.me> | 2020-11-16 16:56:56 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2020-11-16 16:56:56 +0100 |
commit | aefc7f6212b577ecd0ed68eb1f48359f4e27d631 (patch) | |
tree | 83f942e0bcbd54736a8285aaf3997db1009d3c99 /build-system/configure.py | |
parent | db904be62abe41ac96a8ad6b37c631256949835e (diff) |
deps
Diffstat (limited to 'build-system/configure.py')
-rw-r--r-- | build-system/configure.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build-system/configure.py b/build-system/configure.py index e3785b15c..a4a936229 100644 --- a/build-system/configure.py +++ b/build-system/configure.py @@ -15,7 +15,8 @@ if getattr(tbc, "serialversion", 0) < 2: b = tbc.BuildConfig() b.enable_prefix() b.enable_configmk() -b.add_tool(tbc.PosixTool("find")) +b.add_tool(tbc.PosixTool("make")) +b.add_tool(tbc.PosixTool("zip")) b.add_tool(tbc.PosixTool("find")) b.add_tool(tbc.PosixTool("jq")) b.add_tool(tbc.NodeJsTool(version_spec=">=12")) |