From 4d4ffb5d8f9cb040c9ab8e4eb55bb88e51c5b18c Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Sun, 25 Dec 2011 17:52:54 +0100 Subject: find-libdeps: fix syntax error The problem has been introduced in commit 56d4dec19fbcec23f677114e4104bb9df902ed9f Signed-off-by: Florian Pritz Signed-off-by: Pierre Schmitz --- find-libdeps.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/find-libdeps.in b/find-libdeps.in index b7c3619..a7f2b82 100644 --- a/find-libdeps.in +++ b/find-libdeps.in @@ -73,7 +73,7 @@ find . -type f $find_args | while read filename; do if [[ $script_mode = "provides" ]]; then # get the string binaries link to: libfoo.so.1.2 -> libfoo.so.1 sofile=$(LC_ALL=C readelf -d "$filename" 2>/dev/null | sed -n 's/.*Library soname: \[\(.*\)\].*/\1/p') - [[ -z $sofile" ]] && sofile="${filename##*/}" + [[ -z $sofile ]] && sofile="${filename##*/}" process_sofile elif [[ $script_mode = "deps" ]]; then # process all libraries needed by the binary -- cgit v1.2.3-24-g4f1b