diff options
| author | zvecr | 2019-02-15 05:14:26 +0100 |
|---|---|---|
| committer | MechMerlin | 2019-02-15 05:14:26 +0100 |
| commit | 40e67a3074293bc8e96574e7d603a943d3ca8d38 (patch) | |
| tree | 1e152c2282a4a0737e1a5952ec4ac6d96a333b63 /build_layout.mk | |
| parent | 85022f8bb5129f7118b55556c1ce85bc7d721356 (diff) | |
Add a mechanism for force building a particular community layout (#5027)
* Add a mechanism for force building a particular community layout
* Add docs for FORCE_LAYOUT argument
* Update output name when FORCE_LAYOUT is enabled
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 beb1cb6627..6e9f97dae2 100644 --- a/build_layout.mk +++ b/build_layout.mk @@ -15,4 +15,13 @@ define SEARCH_LAYOUTS $$(foreach LAYOUTS_REPO,$$(LAYOUTS_REPOS),$$(eval $$(call SEARCH_LAYOUTS_REPO))) endef +ifneq ($(FORCE_LAYOUT),) + ifneq (,$(findstring $(FORCE_LAYOUT),$(LAYOUTS))) + $(info Forcing layout: $(FORCE_LAYOUT)) + LAYOUTS := $(FORCE_LAYOUT) + else + $(error Forced layout does not exist) + endif +endif + $(foreach LAYOUT,$(LAYOUTS),$(eval $(call SEARCH_LAYOUTS)))
\ No newline at end of file |