From 3cc0f59d51e80c891d2361cdd2d5b7ccd42761e9 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 14 Feb 2015 02:54:24 +0100 Subject: [PATCH] fix regexp in prev commit (abs path) --- tools/linux_packaging/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build index 901c8061c2..5eded1d952 100755 --- a/tools/linux_packaging/build +++ b/tools/linux_packaging/build @@ -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}'`