diff options
author | Andras Timar <andras.timar@collabora.com> | 2017-07-11 12:39:10 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2017-07-11 15:24:54 +0200 |
commit | b9e7930384feb6fdfc5330b393b6f77e735f1a71 (patch) | |
tree | 7a9fac4cf9ce75b5ed12cee1f94c51f8c9e20139 | |
parent | 60da8087810e349ed3185e9b4bf46219ab3685fe (diff) |
add xpdfimport dependencies (e.g. system libpoppler) to systemplate
Change-Id: Iedb77cc0eed107899b15d3d471edcfa0f655d176
Reviewed-on: https://gerrit.libreoffice.org/39821
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Tested-by: Andras Timar <andras.timar@collabora.com>
-rwxr-xr-x | loolwsd-systemplate-setup | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/loolwsd-systemplate-setup b/loolwsd-systemplate-setup index 729220c36..1bd4bd66e 100755 --- a/loolwsd-systemplate-setup +++ b/loolwsd-systemplate-setup @@ -37,6 +37,7 @@ find etc/passwd etc/group etc/hosts \ usr/share/zoneinfo/* \ usr/share/liblangtag \ usr/lib/libpng* usr/lib64/libpng* lib/*-linux-gnu/libpng* \ + usr/lib/*-linux-gnu/liblcms2* \ -type f find etc/fonts \ @@ -45,11 +46,12 @@ find etc/fonts \ lib/libcap* lib64/libcap* lib/*-linux-gnu/libcap* \ lib/libattr* lib/*-linux-gnu/libattr* \ usr/lib/libpng* usr/lib64/libpng* lib/*-linux-gnu/libpng* \ + usr/lib/*-linux-gnu/liblcms2* \ -type l # Go through the LO shared objects and check what system libraries # they link to. -find $INSTDIR -name '*.so' -o -name '*.so.[0-9]*' | +find $INSTDIR -name '*.so' -o -name '*.so.[0-9]*' -o -name 'xpdfimport' | while read file; do ldd $file 2>/dev/null done | |