summaryrefslogtreecommitdiff
path: root/core/toolchain
diff options
context:
space:
mode:
Diffstat (limited to 'core/toolchain')
-rw-r--r--core/toolchain/common.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/toolchain/common.mk b/core/toolchain/common.mk
index 5270d3a..fd27257 100644
--- a/core/toolchain/common.mk
+++ b/core/toolchain/common.mk
@@ -60,15 +60,15 @@ endif
__embtk_toolchain_runrecipe-y = $(strip $(___embtk_toolchain_runrecipe-y))
define ___embtk_toolchain_runrecipe-y
$(eval __xtool_changed-y := $(call __embtk_pkg_runrecipe-y,toolchain))
- $(eval __xtool_exists-y := $(if $(wildcard $(TOOLCHAIN_DIR)/$(TOOLCHAIN_PACKAGE)),,y))
- $(eval __xtool_runrecipe-y := $(or $(__xtool_changed-y),$(__xtool_exists-y)))$(__xtool_runrecipe-y)
+ $(eval __xtool_missed-y := $(if $(wildcard $(TOOLCHAIN_DIR)/$(TOOLCHAIN_PACKAGE)),,y))
+ $(eval __xtool_runrecipe-y := $(or $(__xtool_changed-y),$(__xtool_missed-y)))$(__xtool_runrecipe-y)
endef
__embtk_toolchain_addons_runrecipe-y = $(strip $(___embtk_toolchain_addons_runrecipe-y))
define ___embtk_toolchain_addons_runrecipe-y
$(eval __xtool_addons_changed-y := $(call __embtk_pkg_runrecipe-y,toolchain_addons))
- $(eval __xtool_exists-y := $(if $(wildcard $(TOOLCHAIN_DIR)/$(TOOLCHAIN_PACKAGE)),,y))
- $(eval __xtool_runrecipe-y := $(or $(__xtool_addons_changed-y),$(__xtool_exists-y)))$(__xtool_runrecipe-y)
+ $(eval __xtool_missed-y := $(if $(wildcard $(TOOLCHAIN_DIR)/$(TOOLCHAIN_PACKAGE)),,y))
+ $(eval __xtool_runrecipe-y := $(or $(__xtool_addons_changed-y),$(__xtool_missed-y)))$(__xtool_runrecipe-y)
endef
#