fix regexp in prev commit (abs path)

This commit is contained in:
Robin Gareus 2015-02-14 02:54:24 +01:00
parent fcecace421
commit 3cc0f59d51

View file

@ -453,7 +453,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_.*qt4' ; then continue; fi
# do not include libjack
deps=`LD_LIBRARY_PATH=$OURLIBS${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH} ldd $file | awk '{print $3}'`