tool/tool_chain: fix condition of ali2dep build

Thanks to Tomasz Gajewski for reporting this issue and suggesting the
fix.

Fixes #4365
This commit is contained in:
Norman Feske 2022-02-11 09:20:15 +01:00
parent 6f571a1e80
commit f9f79af5bd

View File

@ -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