# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- # # This file is part of the LibreOffice project. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # include $(SRCDIR)/sysui/productlist.mk rpm_WORKDIR := $(call gb_CustomTarget_get_workdir,sysui/rpm) rpm_SRCDIR := $(SRCDIR)/sysui/desktop RPMDISTROS := freedesktop define rpm_register_target $(call gb_CustomTarget_get_target,sysui/rpm): $(rpm_WORKDIR)/$(1)/$(1)$(PKGVERSIONSHORT)-$(2)-menus-$(PKGVERSION)-$(LIBO_VERSION_PATCH).noarch.rpm $(rpm_WORKDIR)/$(1)-desktop-integration.tar.gz: $(rpm_WORKDIR)/$(1)/$(1)$(PKGVERSIONSHORT)-$(2)-menus-$(PKGVERSION)-$(LIBO_VERSION_PATCH).noarch.rpm $(rpm_WORKDIR)/$(1)/$(1)$(PKGVERSIONSHORT)-$(2)-menus-$(PKGVERSION)-$(LIBO_VERSION_PATCH).noarch.rpm : \ $(rpm_SRCDIR)/$(2)/$(2)-menus.spec \ $(call gb_CustomTarget_get_workdir,sysui/share)/$(1)/create_tree.sh \ | $(rpm_WORKDIR)/$(1)/.dir $(call gb_Helper_print_on_error,\ $(RPM) -bb $$< \ --buildroot $(rpm_WORKDIR)/$(1)/$(2) \ --define "_builddir $(call gb_CustomTarget_get_workdir,sysui/share)/$(1)" \ --define "_rpmdir $(rpm_WORKDIR)/$(1)" \ --define "_rpmfilename %%{NAME}-%%{VERSION}-%%{RELEASE}.%%{ARCH}.rpm" \ --define "productname $(PRODUCTNAME.$(1))" \ --define "pkgprefix $(1)$(PKGVERSIONSHORT)" \ --define "unixfilename $(UNIXFILENAME.$(1))" \ --define "productversion $(PRODUCTVERSION)" \ --define "iconprefix $(UNIXFILENAME.$(1))" \ --define "version $(PKGVERSION)" \ --define "release $(LIBO_VERSION_PATCH)" \ --define "__debug_install_post %nil" \ , $$@.log \ ) endef $(eval $(call gb_CustomTarget_CustomTarget,sysui/rpm)) $(foreach product,$(PRODUCTLIST),\ $(foreach distro,$(RPMDISTROS),\ $(eval $(call rpm_register_target,$(product),$(distro))))) $(eval $(call gb_CustomTarget_register_targets,sysui/rpm,\ $(foreach product,$(PRODUCTLIST),\ $(product)-desktop-integration.tar.gz) \ )) $(rpm_WORKDIR)/%-desktop-integration.tar.gz: $(GNUTAR) -C $(rpm_WORKDIR)/$* -cf - $(foreach distro,$(RPMDISTROS),$*$(PKGVERSIONSHORT)-$(distro)-menus-$(PKGVERSION)-$(LIBO_VERSION_PATCH).noarch.rpm) | gzip > $@ # vim: set noet sw=4 ts=4: stro/collabora/co-2021 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/svx/source
diff options
context:
space:
mode:
authorLászló Németh <nemeth@numbertext.org>2020-01-30 11:26:58 +0100
committerLászló Németh <nemeth@numbertext.org>2020-01-31 07:46:19 +0100
commitc81d766dd4ff7d8b580b7fdc79db6e68c5f14204 (patch)
treea0fb991e4b180a9ec489595186ea265c7c34f180 /svx/source
parente8ac78d3afdeb0302eaea34a50f1ca912d5fe897 (diff)
tdf#130287 disable orphan/widow control in Table Contents
paragraph style to avoid missing text lines later in vertically merged table cells at page break. From commit 49f453755b72654ba454acc321210e8b040df714 ("tdf#89714 - enable Widow/Orphan in default style"), Table Contents got unnecessary orphan/window control. Unfortunately, recent table layout code cannot ignore these settings completely, causing known problems, see for example tdf#128959 (FILEOPEN DOCX Table row content disappears when broken between pages). Change-Id: Idd570f17b0a11af85072a65f3422535b993db306 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87730 Tested-by: Jenkins Reviewed-by: László Németh <nemeth@numbertext.org> Tested-by: László Németh <nemeth@numbertext.org>