From 4af65ac4d42bc1f6a0c9405f34b212fe6d804516 Mon Sep 17 00:00:00 2001 From: casey langen Date: Wed, 9 Feb 2022 23:17:41 -0800 Subject: [PATCH] Added missing Linux libraries. It seems to work now too. --- script/stage-vendor-libraries.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/script/stage-vendor-libraries.sh b/script/stage-vendor-libraries.sh index 7d31d1157..9e99b023f 100755 --- a/script/stage-vendor-libraries.sh +++ b/script/stage-vendor-libraries.sh @@ -65,6 +65,13 @@ elif [[ "$PLATFORM" == 'Linux' ]]; then cp /lib/x86_64-linux-gnu/libpanelw.so.6 ./bin/lib cp /lib/x86_64-linux-gnu/libtinfo.so.6 ./bin/lib cp /lib/x86_64-linux-gnu/libopus.so.0 ./bin/lib + cp /lib/x86_64-linux-gnu/libvorbis.so.0 ./bin/lib + cp /lib/x86_64-linux-gnu/libvorbisenc.so.2 ./bin/lib + cp /lib/x86_64-linux-gnu/libogg.so.0 ./bin/lib + + # update the RPATH so libraries in libs/ can discover each other, + # and plugins can discover themselves, and libs/ (but not the + # other way around) FILES="./bin/lib/*" for f in $FILES