summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2020-04-09 15:47:11 +0200
committerRobin Gareus <robin@gareus.org>2020-04-09 15:47:11 +0200
commit0f1b98c155762451d2951e8fe1338bf1cfe76c7e (patch)
tree5c19e2c98fd72765f6c31bd4932d3b877eca8795 /tools
parent70f13a3ff3a96d9991e739a11a42bb62c0f71be6 (diff)
Linux installer: exclude backends from library compatibility test
Engine backends are loaded dynamically, and Ardour can start without them. This is manly to relax the requirement of having libpulse.so. libardour itself depends on libasound, so the ALSA backend is always present, and the jack-backend dynamically dlopen()s libjack.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/linux_packaging/stage2.run.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/linux_packaging/stage2.run.in b/tools/linux_packaging/stage2.run.in
index 25fef8d4f7..0fa336a096 100755
--- a/tools/linux_packaging/stage2.run.in
+++ b/tools/linux_packaging/stage2.run.in
@@ -498,7 +498,7 @@ then
fi
# check the libs
-LIB_FILES=$(find ${BUNDLE_DIR}/lib -name "*.so" -type f)
+LIB_FILES=$(find ${BUNDLE_DIR}/lib -name "*.so" -type f | grep -v backends)
for path in $LIB_FILES
do