summaryrefslogtreecommitdiff
path: root/postprocess
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2021-04-22 21:56:29 +0200
committerLuboš Luňák <l.lunak@collabora.com>2021-04-22 23:45:55 +0200
commit237446b38631c2a40c227e96f7f8c30b9c3932b4 (patch)
tree131d291c0cc5c0170563fdd81566afe57ea0275d /postprocess
parent1c1226709c6be39c5462f5e6e1262ca630b30b34 (diff)
fix component handling for ucpdav1 when --with-webdav=serf
Both the webdav=neon and webdav=serf cases were actually using the same ucpdav1.component file. And f3f0d05f72d8dbd9717910b4d6b4 changed component handling for neon, but not for serf. So separate component handling for neon and for serf, and also do the f3f0d05 change also for the serf case. Change-Id: Id5907cf1c8fbb93817e81295f71ad87191fe5c16 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114525 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'postprocess')
-rw-r--r--postprocess/Rdb_services.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/postprocess/Rdb_services.mk b/postprocess/Rdb_services.mk
index 2abee72f6d09..0154db097caf 100644
--- a/postprocess/Rdb_services.mk
+++ b/postprocess/Rdb_services.mk
@@ -173,9 +173,12 @@ $(eval $(call gb_Rdb_add_components,services,\
extensions/source/ole/oleautobridge \
winaccessibility/source/service/winaccessibility \
) \
- $(if $(WITH_WEBDAV), \
+ $(if $(filter neon,$(WITH_WEBDAV)), \
ucb/source/ucp/webdav-neon/ucpdav1 \
) \
+ $(if $(filter serf,$(WITH_WEBDAV)), \
+ ucb/source/ucp/webdav/ucpdav1 \
+ ) \
$(call gb_Helper_optional,SCRIPTING, \
basctl/util/basctl \
sc/util/vbaobj \