13
0

Better solution 213cc1d32

This commit is contained in:
Robin Gareus 2017-02-16 16:08:33 +01:00
parent 9c10fc5b5c
commit eba5f0d2e1

View File

@ -519,8 +519,7 @@ while [ true ] ; do
checkIdx=$(($checkIdx + 1)) checkIdx=$(($checkIdx + 1))
# ignore suil/qt wrappers - the plugin will pull in QT4. # 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_.*qt[45]' ; then continue; fi
if echo $file | grep -qs 'libsuil_.*qt5' ; then continue; fi
# do not include libjack, nor libwine # 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}'` deps=`LD_LIBRARY_PATH=$OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} ldd $file | grep -v libwine.so | awk '{print $3}'`