summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2017-11-29 21:23:44 +0100
committerMichael Stahl <mstahl@redhat.com>2018-02-05 16:52:28 +0100
commit49696161be136a274d23b5704f146e0421aeb7fe (patch)
treeca0bfd875845c1e71991dbd45b1aea4975bddde3 /bin
parent96335019cdd7f7e611c29206eb9706556dd53c78 (diff)
postprocess: enable the check-elf-dynamic-objects for real
Change-Id: Ie08d3dfc6306c18da7b1a5c000a75a18917c1f70 Reviewed-on: https://gerrit.libreoffice.org/45529 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/check-elf-dynamic-objects7
1 files changed, 5 insertions, 2 deletions
diff --git a/bin/check-elf-dynamic-objects b/bin/check-elf-dynamic-objects
index a066d8f55eb9..3561b4109c78 100755
--- a/bin/check-elf-dynamic-objects
+++ b/bin/check-elf-dynamic-objects
@@ -191,8 +191,11 @@ else
wait
if [ -s check_elf.out ] ; then
- cat check_elf.out
- status=1
+ cat check_elf.out
+ # FIXME known broken, ignore for now
+ if grep -v 'libgpgmepp.so.6\|libgpgme.so.11\|libassuan.so.0' check_elf.out >/dev/null; then
+ status=1
+ fi
fi
rm check_elf.out
fi