edf471ba8b
...which 0c0c9a0dd8
"tdf#155057: Wrong colors in
some WPG2 (well rendered in WPG1)" had dropped for no apparent reason, causing
> [CHK] CustomTarget/postprocess/check_dynamic_objects/check.done
> ~/lo/core/instdir/program/libwpg-0.3-lo.so.3 has unexpected RPATH 0x000000000000001d (RUNPATH) Library runpath: [~/lo/core/workdir/UnpackedTarball/libwpd/src/lib/.libs:~/lo/core/workdir/UnpackedTarball/librevenge/src/lib/.libs:/usr/local/lib:$ORIGIN]
to fail (in Linux builds that execute that test)
Change-Id: Id9f87b14f571b328b98496625351bc1f87bf8c61
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/151555
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
32 lines
882 B
Makefile
32 lines
882 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_UnpackedTarball_UnpackedTarball,libwpg))
|
|
|
|
$(eval $(call gb_UnpackedTarball_set_tarball,libwpg,$(WPG_TARBALL)))
|
|
|
|
$(eval $(call gb_UnpackedTarball_set_patchlevel,libwpg,0))
|
|
|
|
$(eval $(call gb_UnpackedTarball_update_autoconf_configs,libwpg))
|
|
|
|
$(eval $(call gb_UnpackedTarball_add_patches,libwpg, \
|
|
external/libwpg/rpath.patch \
|
|
))
|
|
|
|
ifneq ($(OS),MACOSX)
|
|
ifneq ($(OS),WNT)
|
|
ifneq ($(OS),iOS)
|
|
$(eval $(call gb_UnpackedTarball_add_patches,libwpg, \
|
|
external/libwpg/libwpg-bundled-soname.patch.0 \
|
|
))
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
# vim: set noet sw=4 ts=4:
|