mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
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.
This commit is contained in:
parent
70f13a3ff3
commit
0f1b98c155
1 changed files with 1 additions and 1 deletions
|
|
@ -498,7 +498,7 @@ then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# check the libs
|
# 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
|
for path in $LIB_FILES
|
||||||
do
|
do
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue