summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2012-05-23 16:30:11 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2012-05-23 16:30:11 +0000
commit77077828d223c00ee5630d0e1338338bc9721fc6 (patch)
tree0a0b29e887a83d70ac026893e3e84eac83b8be1e /tools
parentdb6142dc5c8b6f027ea80e1a8f1a8bc681504924 (diff)
backport packaging fixes from 3.0
git-svn-id: svn://localhost/ardour2/branches/2.0-ongoing@12396 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/linux_packaging/build6
1 files changed, 5 insertions, 1 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index 5c8833c6a8..52b15ca62c 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -512,9 +512,13 @@ while [ true ] ; do
if echo $dep | grep -qs "^/lib/" ; then continue; fi
# don't include jack
if echo $dep | grep -qs libjack ; then continue; fi
+ # don't include ALSA
+ if echo $dep | grep -qs libasound ; then continue; fi
# don't include any X Window libraries
- if echo $dep | grep -qs libX ; then continue; fi
+ if echo $dep | grep -qs libX\. ; then continue; fi
if echo $dep | grep -qs libxcb ; then continue; fi
+ if echo $dep | grep -qs libICE\. ; then continue; fi
+ if echo $dep | grep -qs libSM\. ; then continue; fi
# don't include libc
if echo $dep | grep -qs 'libc\.' ; then continue; fi
# don't include libstdc++