[Libreoffice-commits] core.git: postprocess/Module_postprocess.mk
Michael Stahl
mstahl at redhat.com
Mon Dec 4 19:23:52 UTC 2017
postprocess/Module_postprocess.mk | 2 ++
1 file changed, 2 insertions(+)
New commits:
commit 0616a5e13e6656a97071b1407912e1043a903407
Author: Michael Stahl <mstahl at redhat.com>
Date: Mon Dec 4 20:16:41 2017 +0100
postprocess: only check-dynamic-objects if instset is created
People who use --with-system-libs will derive no benefit from
check-elf-dynamic-objects. Since checking all SYSTEM_* variables
seems unmaintainable, check if an instset is to be created as a
heuristic that the build should be portable and libraries checked.
This should run with no config changes at least on the tinderboxes;
Jenkins builders don't create instsets.
Change-Id: I2407429891210ea79917fc4d01a933ec661325b1
diff --git a/postprocess/Module_postprocess.mk b/postprocess/Module_postprocess.mk
index cde1613084af..27cc0b940327 100644
--- a/postprocess/Module_postprocess.mk
+++ b/postprocess/Module_postprocess.mk
@@ -42,10 +42,12 @@ $(eval $(call gb_Module_add_targets,postprocess, \
endif
ifeq ($(OS),LINUX)
+ifneq ($(PKGFORMAT),)
$(eval $(call gb_Module_add_check_targets,postprocess,\
CustomTarget_check_dynamic_objects \
))
endif
+endif
$(eval $(call gb_Module_add_check_targets,postprocess,\
CppunitTest_services \
More information about the Libreoffice-commits
mailing list