From 69b4da4b74369a93c4dfabdcb12e0e97f07d623e Mon Sep 17 00:00:00 2001 From: Benoit Pierre Date: Thu, 11 Apr 2024 00:33:51 +0200 Subject: [PATCH] make: fix `appimageupdate` rule Update sdnio library soversion to account for new docker image based on Ubuntu 20.04. --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 64e207d6c..283cd6738 100644 --- a/Makefile +++ b/Makefile @@ -333,8 +333,8 @@ appimageupdate: all # TODO at best this is DebUbuntu specific ln -sf /usr/lib/x86_64-linux-gnu/libSDL2-2.0.so.0 $(INSTALL_DIR)/koreader/libs/libSDL2.so # required for our stock Ubuntu SDL even though we don't use sound - # the readlink is a half-hearted attempt at being generic; the echo libsndio.so.6.1 is specific to the nightly builds - ln -sf /usr/lib/x86_64-linux-gnu/$(shell readlink /usr/lib/x86_64-linux-gnu/libsndio.so || echo libsndio.so.6.1) $(INSTALL_DIR)/koreader/libs/ + # the readlink is a half-hearted attempt at being generic; the echo libsndio.so.7.0 is specific to the nightly builds + ln -sf /usr/lib/x86_64-linux-gnu/$(shell readlink /usr/lib/x86_64-linux-gnu/libsndio.so || echo libsndio.so.7.0) $(INSTALL_DIR)/koreader/libs/ # also copy libbsd.so.0, cf. https://github.com/koreader/koreader/issues/4627 ln -sf /lib/x86_64-linux-gnu/libbsd.so.0 $(INSTALL_DIR)/koreader/libs/ ifeq ("$(wildcard $(APPIMAGETOOL))","")