summaryrefslogtreecommitdiff
path: root/examples/make.mk
diff options
context:
space:
mode:
authorhathach <[email protected]>2021-03-04 22:53:02 +0700
committerhathach <[email protected]>2021-03-04 22:53:02 +0700
commit590d8d4d5c94324fbd2ea3dcb96b7776c1171577 (patch)
tree4471b64111b65dbfc10b73bad3c4616b2c02759b /examples/make.mk
parentb846ded487c29e5ca5698f2ab7cb237a21eeb85b (diff)
rename FAMILY_SUBMODULES to DEPS_SUBMODULES
Diffstat (limited to 'examples/make.mk')
-rw-r--r--examples/make.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/make.mk b/examples/make.mk
index b29d0e4a2..82fbd020b 100644
--- a/examples/make.mk
+++ b/examples/make.mk
@@ -53,8 +53,8 @@ fetch_submodule_if_empty = \
$(info $(shell git -C $(TOP) submodule update --init $1)) \
endif
-ifdef FAMILY_SUBMODULES
- $(foreach s,$(FAMILY_SUBMODULES),:$(call fetch_submodule_if_empty,$(s)))
+ifdef DEPS_SUBMODULES
+ $(foreach s,$(DEPS_SUBMODULES),:$(call fetch_submodule_if_empty,$(s)))
endif
#-------------- Cross Compiler ------------