mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
Linux-bundle: use build-stack only
This fixes an issue with libpulse indirectly adding libasync
This commit is contained in:
parent
d7454714ab
commit
c81cbd8f30
1 changed files with 5 additions and 4 deletions
|
|
@ -557,13 +557,14 @@ while [ true ] ; do
|
|||
|
||||
# don't use anything mapped at a specific address
|
||||
if echo $dep | grep -qs '0x' ; then continue; fi
|
||||
# don't include /lib
|
||||
# don't include any distro libraries
|
||||
if echo $dep | grep -qs "^/lib/" ; then continue; fi
|
||||
# don't include jack
|
||||
if echo $dep | grep -qs "^/usr/lib/" ; then continue; fi
|
||||
if echo $dep | grep -qs "^/usr/local/lib/" ; then continue; fi
|
||||
## the following re likley redudant ##
|
||||
# skip jack, ALSA & pulse
|
||||
if echo $dep | grep -qs libjack ; then continue; fi
|
||||
# don't include ALSA
|
||||
if echo $dep | grep -qs libasound ; then continue; fi
|
||||
# nor pulse
|
||||
if echo $dep | grep -qs libpulse ; then continue; fi
|
||||
# don't include any X Window libraries
|
||||
if echo $dep | grep -qs libX\. ; then continue; fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue