diff options
Diffstat (limited to 'build_layout.mk')
-rw-r--r-- | build_layout.mk | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/build_layout.mk b/build_layout.mk index beb1cb662..6e9f97dae 100644 --- a/build_layout.mk +++ b/build_layout.mk | |||
@@ -15,4 +15,13 @@ define SEARCH_LAYOUTS | |||
15 | $$(foreach LAYOUTS_REPO,$$(LAYOUTS_REPOS),$$(eval $$(call SEARCH_LAYOUTS_REPO))) | 15 | $$(foreach LAYOUTS_REPO,$$(LAYOUTS_REPOS),$$(eval $$(call SEARCH_LAYOUTS_REPO))) |
16 | endef | 16 | endef |
17 | 17 | ||
18 | ifneq ($(FORCE_LAYOUT),) | ||
19 | ifneq (,$(findstring $(FORCE_LAYOUT),$(LAYOUTS))) | ||
20 | $(info Forcing layout: $(FORCE_LAYOUT)) | ||
21 | LAYOUTS := $(FORCE_LAYOUT) | ||
22 | else | ||
23 | $(error Forced layout does not exist) | ||
24 | endif | ||
25 | endif | ||
26 | |||
18 | $(foreach LAYOUT,$(LAYOUTS),$(eval $(call SEARCH_LAYOUTS))) \ No newline at end of file | 27 | $(foreach LAYOUT,$(LAYOUTS),$(eval $(call SEARCH_LAYOUTS))) \ No newline at end of file |