Kaydet (Commit) c4f7ed86 authored tarafından Michael Stahl's avatar Michael Stahl

RepositoryModule: un-break serialization of libraries

The serialization was effectively disabled because the top-level
Makefile does not invoke Makefile.gbuild with "all" target but with
empty (default) target so MAKECMDS is empty.

(regression from 96409470)

Change-Id: I919c6543a282945cbb36468ff0d4666718a7d8f6
üst fcca05c3
......@@ -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) \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment