linux packaging: ignore QT4 dependency
authorRobin Gareus <robin@gareus.org>
Sat, 14 Feb 2015 01:46:02 +0000 (02:46 +0100)
committerRobin Gareus <robin@gareus.org>
Sat, 14 Feb 2015 01:46:55 +0000 (02:46 +0100)
tools/linux_packaging/build

index 6a57f1059aacddc141489005672ff1e4a2cc1482..901c8061c226a1e726d6e0fa937b59ad77128dc4 100755 (executable)
@@ -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}'`