3dc548476c
Field parameters get horribly maimed by lcl_ExtractParameter which clearly has never worked in its 7 years of existence (and looking at the inanity at the call sites makes one wonder what the author was smoking). The format is actually quite annoying, since spaces between parameters are optional. The old RTF filter was at least able to parse "PAGEREF bookmark" fields, so this fixes such regressions (related: rhbz#1065629). Change-Id: I9b2e32c3c7264be0fc1077cb8fb3f1bc5c1955bb
22 lines
641 B
Makefile
22 lines
641 B
Makefile
# -*- 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/.
|
|
#
|
|
|
|
$(eval $(call gb_Module_Module,writerfilter))
|
|
|
|
$(eval $(call gb_Module_add_targets,writerfilter,\
|
|
CustomTarget_source \
|
|
Library_writerfilter \
|
|
))
|
|
|
|
$(eval $(call gb_Module_add_slowcheck_targets,writerfilter,\
|
|
CppunitTest_writerfilter_rtftok \
|
|
CppunitTest_writerfilter_misc \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|