From 4660a3430598f75e5e435acd1b2f73e88f3c6b7b Mon Sep 17 00:00:00 2001 From: Jan Lindemann Date: Thu, 18 Jun 2026 12:27:31 +0200 Subject: [PATCH] platform.mk: Move include .cache-project.mk up Reverse inclusion order of .cache-project.mk and cache-projects.mk: Definitions in .cache-project.mk should win over cache-projects.mk, because it's the more specialized include file, and the way the definitions in both files are structured, the later doesn't overwrite the earlier. Signed-off-by: Jan Lindemann --- make/platform.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/make/platform.mk b/make/platform.mk index 198a086c..bf161fdd 100644 --- a/make/platform.mk +++ b/make/platform.mk @@ -12,8 +12,8 @@ endef CACHE_PROJECTS_MK := $(JWBDIR)/cache-projects.mk -$(eval $(call try_include,$(CACHE_PROJECTS_MK))) $(eval $(call try_include,$(TOPDIR)/make/.cache-project.mk)) +$(eval $(call try_include,$(CACHE_PROJECTS_MK))) $(eval $(call try_include,$(JWBDIR)/make/pre-local.mk)) $(eval $(call try_include,$(TOPDIR)/make/pre-local.mk)) $(eval $(call try_include,pre-local.mk))