summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-02-14 02:54:24 +0100
committerRobin Gareus <robin@gareus.org>2015-02-14 02:54:24 +0100
commit3cc0f59d51e80c891d2361cdd2d5b7ccd42761e9 (patch)
treee7f0308de0b3e494240fb1e8ec7e5b8d997da744 /tools
parentfcecace421a21d0a165c0e1b9a358aaf315d54b8 (diff)
fix regexp in prev commit (abs path)
Diffstat (limited to 'tools')
-rwxr-xr-xtools/linux_packaging/build2
1 files changed, 1 insertions, 1 deletions
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}'`