summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2017-02-16 16:08:33 +0100
committerRobin Gareus <robin@gareus.org>2017-02-16 16:08:33 +0100
commiteba5f0d2e1bd615721d5950f235f9e2fe7f4ec62 (patch)
treeabdf33c474743b02834fd5dec18aa8eec8b775ba /tools
parent9c10fc5b5c438e66a2f780920e684ea9abeb49a0 (diff)
Better solution 213cc1d32
Diffstat (limited to 'tools')
-rwxr-xr-xtools/linux_packaging/build3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index 39655a78ff..ede766e495 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -519,8 +519,7 @@ while [ true ] ; do
checkIdx=$(($checkIdx + 1))
# ignore suil/qt wrappers - the plugin will pull in QT4.
- if echo $file | grep -qs 'libsuil_.*qt4' ; then continue; fi
- if echo $file | grep -qs 'libsuil_.*qt5' ; then continue; fi
+ if echo $file | grep -qs 'libsuil_.*qt[45]' ; then continue; fi
# do not include libjack, nor libwine
deps=`LD_LIBRARY_PATH=$OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} ldd $file | grep -v libwine.so | awk '{print $3}'`