summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-07-11 10:40:45 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-07-11 10:40:45 -0400
commit1f501ef94023d2911e9542b70668455e0aa72a10 (patch)
treec6f605cc54fd04709fefe026f1c912d0b502e409 /tools
parent6990c31ed52c1c2491c19fc68c402acb4abc10e8 (diff)
on linux, build ALSA backend as part of binary bundle, but don't include libdbus in bundle
Diffstat (limited to 'tools')
-rwxr-xr-xtools/linux_packaging/build2
-rw-r--r--tools/linux_packaging/noderun2
2 files changed, 3 insertions, 1 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index 4e8ef72c47..3a4e748fe6 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -473,6 +473,8 @@ while [ true ] ; do
if echo $dep | grep -qs 'libc\.' ; then continue; fi
# don't include libstdc++
if echo $dep | grep -qs libstdc++ ; then continue; fi
+ # don't include libdbus
+ if echo $dep | grep -qs libdbus ; then continue; fi
base=`basename $dep`
if ! test -f $Libraries/$base; then
diff --git a/tools/linux_packaging/noderun b/tools/linux_packaging/noderun
index a6357ef488..80c96af111 100644
--- a/tools/linux_packaging/noderun
+++ b/tools/linux_packaging/noderun
@@ -11,7 +11,7 @@ fi
cd $BASE || exit 1
git pull || exit 1
-./waf configure $* --strict --noconfirm --also-libdir=$HOME/a3/inst/lib --also-include=$HOME/gtk/inst/include || exit 1
+./waf configure $* --strict --noconfirm --also-libdir=$HOME/a3/inst/lib --also-include=$HOME/gtk/inst/include --with-alsabackend || exit 1
./waf || exit 1
cd tools/linux_packaging || exit 1
./build --public --harvid --strip some || exit 1