summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2019-07-25 22:37:13 +0200
committerRobin Gareus <robin@gareus.org>2019-07-25 22:37:13 +0200
commitc81cbd8f30c89d37c03cbdbb0a9cef48e1e55b5e (patch)
treef6d5140b7b65cc8f3e23ba40860ae1ab4aa6afec /tools
parentd7454714ab4c75092a500a899dcd6d8009599cd9 (diff)
Linux-bundle: use build-stack only
This fixes an issue with libpulse indirectly adding libasync
Diffstat (limited to 'tools')
-rwxr-xr-xtools/linux_packaging/build9
1 files changed, 5 insertions, 4 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index 8f6b9f3d25..8a540faeb2 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -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