summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
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