diff options
author | David Tardon <dtardon@redhat.com> | 2012-09-23 18:34:55 +0200 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-09-23 18:47:16 +0200 |
commit | 0c6aa2881d18c81ff711b5ce8f0e550eacaa11d6 (patch) | |
tree | cb54fff36895252364a4d50c8d4bef4028e5f8cb /Module_tail_build.mk | |
parent | 47a5ea6437853ab16a757f2181eacc3a07d3d90c (diff) |
do not build what is not necessary
Change-Id: I6fb9ff64c2cc408bf4133ddcee4a255b54078e41
Diffstat (limited to 'Module_tail_build.mk')
-rw-r--r-- | Module_tail_build.mk | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Module_tail_build.mk b/Module_tail_build.mk index 13efa586e945..693455ef3b12 100644 --- a/Module_tail_build.mk +++ b/Module_tail_build.mk @@ -46,7 +46,9 @@ $(eval $(call gb_Module_add_moduledirs,tail_end,\ $(if $(filter DESKTOP,$(BUILD_TYPE)),\ codemaker \ ) \ - clucene \ + $(if $(filter CLUCENE,$(BUILD_TYPE)),\ + clucene \ + ) \ comphelper \ configmgr \ connectivity \ @@ -101,7 +103,9 @@ $(eval $(call gb_Module_add_moduledirs,tail_end,\ lingucomponent \ linguistic \ lotuswordpro \ - l10ntools \ + $(if $(filter DESKTOP,$(BUILD_TYPE)),\ + l10ntools \ + ) \ MathMLDTD \ mdds \ Mesa \ |