From f9f79af5bdceec276243977c5b5b2f3042ce5edc Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Fri, 11 Feb 2022 09:20:15 +0100 Subject: [PATCH] tool/tool_chain: fix condition of ali2dep build Thanks to Tomasz Gajewski for reporting this issue and suggesting the fix. Fixes #4365 --- tool/tool_chain | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/tool_chain b/tool/tool_chain index bf4f4ecf9e..0faba209c7 100755 --- a/tool/tool_chain +++ b/tool/tool_chain @@ -214,7 +214,7 @@ BINUTILS_BOOTSTRAP_CONFIG += $(COMMON_BOOTSTRAP_CONFIG) LANGUAGES := $(filter-out gdb, $(ENABLE_FEATURES)) LANGUAGES := $(shell echo "${LANGUAGES}" | sed -e 's/ /,/g') -ifeq ($(filter ada,$(LANGUAGES)),) +ifeq ($(filter ada,$(ENABLE_FEATURES)),) ALI2DEP_INSTALLED_BINARY = endif