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 <jan@janware.com>
This commit is contained in:
parent
d31768cbef
commit
4660a34305
1 changed files with 1 additions and 1 deletions
|
|
@ -12,8 +12,8 @@ endef
|
||||||
|
|
||||||
CACHE_PROJECTS_MK := $(JWBDIR)/cache-projects.mk
|
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,$(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,$(JWBDIR)/make/pre-local.mk))
|
||||||
$(eval $(call try_include,$(TOPDIR)/make/pre-local.mk))
|
$(eval $(call try_include,$(TOPDIR)/make/pre-local.mk))
|
||||||
$(eval $(call try_include,pre-local.mk))
|
$(eval $(call try_include,pre-local.mk))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue