summaryrefslogtreecommitdiff
path: root/examples/make.mk
diff options
context:
space:
mode:
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 ------------