diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2013-03-15 11:20:41 +0100 |
---|---|---|
committer | Björn Michaelsen <bjoern.michaelsen@canonical.com> | 2013-03-21 20:32:17 +0000 |
commit | c7f09e4fd4932f60c2e233d676537b6e786a7cfd (patch) | |
tree | 4d6665e23bbc951d771a0fc78a5a1574878ebfa2 /bridges | |
parent | 211a9a9cdcc34316e40c893179d7d3d0c160cfe4 (diff) |
introduce gb_Module_SKIPTARGETS
- this speeds up the old SKIP_TESTS targets build-nocheck and
dev-install-nocheck
- this allows e.g. tinderboxes, which know that they just completed a
build, to only read the files for the tests (and exclude the build
itself)
- since the dep file can be quite large this might help performance in
such scenarios quite a bit
- also moving this to extensions as it is merely a performance
optimization
Conflicts:
Makefile.in
solenv/gbuild/Module.mk
Change-Id: I1265dbacdd9f3731fe755a1b997c2fa5ac1f7421
Reviewed-on: https://gerrit.libreoffice.org/2742
Reviewed-by: Matúš Kukan <matus.kukan@gmail.com>
Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Tested-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Diffstat (limited to 'bridges')
-rw-r--r-- | bridges/Module_bridges.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bridges/Module_bridges.mk b/bridges/Module_bridges.mk index f9d9c14f9321..b71e14277bf1 100644 --- a/bridges/Module_bridges.mk +++ b/bridges/Module_bridges.mk @@ -23,7 +23,7 @@ $(eval $(call gb_Module_add_targets,bridges,\ ) \ )) -ifeq (,$(gb_STRIPPED_BUILD)) +ifeq (,$(filter build,$(gb_Module_SKIPTARGETS))) ifeq ($(strip $(bridges_SELECTED_BRIDGE)),) $(call gb_Output_error,no bridge selected for build: bailing out) else ifneq ($(words $(bridges_SELECTED_BRIDGE)),1) |