_toolchain: substitute '+' with 'X' in tool_env_var().

This commit is contained in:
Jean-François Nguyen 2021-07-16 19:16:56 +02:00 committed by whitequark
parent e974a31022
commit abb2642256

View file

@ -10,7 +10,7 @@ class ToolNotFound(Exception):
def tool_env_var(name):
return name.upper().replace("-", "_")
return name.upper().replace("-", "_").replace("+", "X")
def _get_tool(name):