diff options
-rw-r--r-- | RepositoryModule_host.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/RepositoryModule_host.mk b/RepositoryModule_host.mk index 93a2fe7cba0c..259ca29eb233 100644 --- a/RepositoryModule_host.mk +++ b/RepositoryModule_host.mk @@ -241,7 +241,9 @@ $(if $(strip $(1)),\ $(call repositorymodule_serialize,$(wordlist 2,$(words $(1)),$(1)))) endef -ifeq (all,$(filter all,$(MAKECMDGOALS))) +# do not serialize on a partial build as that may fail due to missing deps. +# the default goal is all (see Module.mk) +ifeq (,$(filter-out all,$(MAKECMDGOALS))) $(eval $(call repositorymodule_serialize,\ scfilt \ $(if $(filter SCRIPTING,$(BUILD_TYPE)),vbaobj) \ |