diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-03-16 14:24:45 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-16 14:24:45 +0100 |
commit | 1f61e1378d45f27df22e0380038a25bf86926c48 (patch) | |
tree | 6dd2b81a070293cc236f2aa1303e78bd58df57ee /postprocess | |
parent | f87a47a04a9eaae5d85a9f081536aa0b8dddf95d (diff) |
Exclude Python components if --disable-python
Change-Id: I05c1e9d7b270bcafa7fbfe526c8b12733d8ed708
Diffstat (limited to 'postprocess')
-rw-r--r-- | postprocess/Rdb_services.mk | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/postprocess/Rdb_services.mk b/postprocess/Rdb_services.mk index affb629c8917..9b398cfb85b2 100644 --- a/postprocess/Rdb_services.mk +++ b/postprocess/Rdb_services.mk @@ -168,16 +168,18 @@ $(eval $(call gb_Rdb_add_components,services,\ scripting/source/basprov/basprov \ scripting/source/dlgprov/dlgprov \ scripting/source/protocolhandler/protocolhandler \ - scripting/source/pyprov/mailmerge \ - wizards/com/sun/star/wizards/fax/fax \ - wizards/com/sun/star/wizards/letter/letter \ - wizards/com/sun/star/wizards/agenda/agenda \ - wizards/com/sun/star/wizards/web/web \ scripting/source/stringresource/stringresource \ scripting/source/vbaevents/vbaevents \ scripting/util/scriptframe \ sw/util/vbaswobj \ vbahelper/util/msforms \ + $(ifneq ($(DISABLE_PYTHON),TRUE) \ + scripting/source/pyprov/mailmerge \ + wizards/com/sun/star/wizards/agenda/agenda \ + wizards/com/sun/star/wizards/fax/fax \ + wizards/com/sun/star/wizards/letter/letter \ + wizards/com/sun/star/wizards/web/web \ + ) \ ) \ $(if $(ENABLE_CAIRO_CANVAS), \ canvas/source/cairo/cairocanvas \ |