summaryrefslogtreecommitdiff
path: root/tools/linux_packaging/build
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-02-14 02:46:02 +0100
committerRobin Gareus <robin@gareus.org>2015-02-14 02:46:55 +0100
commitfcecace421a21d0a165c0e1b9a358aaf315d54b8 (patch)
tree3a9c0cf15bc37c8469b3214799d126384f5e1cf8 /tools/linux_packaging/build
parent7a99bc537318321eca93667fe3006bea570d7e76 (diff)
linux packaging: ignore QT4 dependency
Diffstat (limited to 'tools/linux_packaging/build')
-rwxr-xr-xtools/linux_packaging/build3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index 6a57f1059a..901c8061c2 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -451,6 +451,9 @@ while [ true ] ; do
done
depCheckedList[$checkIdx]=$file
checkIdx=$(($checkIdx + 1))
+
+ # ignore suil/qt wrappers - the plugin will pull in QT4.
+ if echo $file | grep -qs '^libsuil_.*qt4' ; then continue; fi
# do not include libjack
deps=`LD_LIBRARY_PATH=$OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} ldd $file | awk '{print $3}'`