[Libreoffice-commits] online.git: loolwsd/loolwsd-systemplate-setup

Miklos Vajna vmiklos at collabora.co.uk
Wed Jan 6 01:19:55 PST 2016


 loolwsd/loolwsd-systemplate-setup |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4a5e4ac147d60e114e6c501c2ed12a641bc29895
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Wed Jan 6 10:17:52 2016 +0100

    loolwsd: avoid copying non-Poco libs when looking for system Poco libs
    
    10:05 < tml> vmiklos: doesn't your latest commit to online massively increase the number of .so files handled?
    
    Indeed, the systemplate size was about 1.2GB, now it's back to around
    500MB for my setup.

diff --git a/loolwsd/loolwsd-systemplate-setup b/loolwsd/loolwsd-systemplate-setup
index 1ad81cf..78bfbe5 100755
--- a/loolwsd/loolwsd-systemplate-setup
+++ b/loolwsd/loolwsd-systemplate-setup
@@ -63,7 +63,7 @@ cd / || exit 1
 	grep -v dynamic | cut -d " " -f 3 | grep -E '^(/lib|/usr)' | sort -u | sed -e 's,^/,,'
 
 	# Go through the loolkit
-	find $POCODIR usr/lib64 -name '*Poco*.so' -o -name '*.so.[0-9]*' |
+	find $POCODIR usr/lib64 -name '*Poco*.so' -o -name '*Poco*.so.[0-9]*' |
 	while read file; do
 	    echo $file
 	    ldd $file 2>/dev/null


More information about the Libreoffice-commits mailing list