Kaydet (Commit) ab988b37 authored tarafından Bjoern Michaelsen's avatar Bjoern Michaelsen

fix conditions on when to read gbuild definitions

üst 22ad135d
...@@ -27,12 +27,6 @@ ...@@ -27,12 +27,6 @@
ifeq ($(strip $(gb_PARTIALBUILD)),) ifeq ($(strip $(gb_PARTIALBUILD)),)
gb_Module_add_target=
gb_Module_add_moduledir=
gb_Module_add_check_target=
gb_Module_add_subsequentcheck_target=
gb_FULLDEPS=
clean: clean-host clean-build clean: clean-host clean-build
subsequentcheck: smoketestoo_native subsequentcheck: smoketestoo_native
......
...@@ -27,14 +27,26 @@ ...@@ -27,14 +27,26 @@
# speed up if no target need to parse all modules # speed up if no target need to parse all modules
gb_SpeedUpTargets_WRAPPEDBUILD:=
ifneq ($(strip $(MAKECMDGOALS)),) ifneq ($(strip $(MAKECMDGOALS)),)
ifeq ($(filter-out id tags docs distro-pack-install fetch help debugrun Env.Host.sh,$(MAKECMDGOALS)),) ifeq ($(filter-out id tags docs distro-pack-install fetch help debugrun $(SRCDIR)/Env.Host.sh,$(MAKECMDGOALS)),)
gb_SpeedUpTargets_WRAPPEDBUILD:=T
endif
endif
ifeq ($(strip $(gb_PARTIALBUILD)),)
ifeq ($(filter-out clean subsequentcheck unitcheck build dev-install smoketestoo_native instsetoo_native cross_toolset findunusedcode,$(MAKECMDGOALS)),)
gb_SpeedUpTargets_WRAPPEDBUILD:=T
endif
endif
ifneq ($(strip $(gb_SpeedUpTargets_WRAPPEDBUILD)),)
$(info wrapped build - skip reading gbuild definitions)
gb_Module_add_target= gb_Module_add_target=
gb_Module_add_check_target= gb_Module_add_check_target=
gb_Module_add_subsequentcheck_target= gb_Module_add_subsequentcheck_target=
gb_FULLDEPS= gb_FULLDEPS=
endif endif
endif
# vim:set shiftwidth=4 softtabstop=4 noexpandtab: # vim:set shiftwidth=4 softtabstop=4 noexpandtab:
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