From fa3343dd979bfcaebd0403fff0a1b371ba2d6c91 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 5 Feb 2019 10:49:44 +0100 Subject: [PATCH] We need to deploy the real lib, not the symlink to it. `libzim.so` is a symlink to `libzim.so.4`, who is also a symlink to `libzim.so.4.0.4`. --- travis/compile_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/compile_all.py b/travis/compile_all.py index 1ac6b4b..d97c214 100755 --- a/travis/compile_all.py +++ b/travis/compile_all.py @@ -43,7 +43,7 @@ BINARIES = { 'kiwix-tools': ('bin', ('kiwix-manage', 'kiwix-read', 'kiwix-search', 'kiwix-serve')), 'zim-tools': ('bin', ('zimbench', 'zimcheck', 'zimdump', 'zimsearch', 'zimdiff', 'zimpatch', 'zimsplit')), 'zimwriterfs': ('bin', ('zimwriterfs',)), - 'libzim': ('lib/x86_64-linux-gnu', ('libzim.so',)) + 'libzim': ('lib/x86_64-linux-gnu', ('libzim.so.{}'.format(main_project_versions['libzim']),)) } _date = date.today().isoformat()