From 237446b38631c2a40c227e96f7f8c30b9c3932b4 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Thu, 22 Apr 2021 21:56:29 +0200 Subject: fix component handling for ucpdav1 when --with-webdav=serf MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- postprocess/Rdb_services.mk | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'postprocess') 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 \ -- cgit