From 8ff4d3b16ea7fb8ad35b9e46a0a8287654f29b84 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Wed, 11 Oct 2017 21:54:52 +0100 Subject: [PATCH] missing " --- lgsm/functions/command_dev_detect_ldd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_dev_detect_ldd.sh b/lgsm/functions/command_dev_detect_ldd.sh index 3bdc2fc36..668ca0377 100644 --- a/lgsm/functions/command_dev_detect_ldd.sh +++ b/lgsm/functions/command_dev_detect_ldd.sh @@ -32,7 +32,7 @@ while IFS= read -r -d $'\0' line; do if [ -n "$(ldd $line 2>/dev/null |grep -v "not a dynamic executable"|grep "not found")" ]; then echo "${line}" >> "${tmpdir}/detect_ldd_not_found.tmp" - ldd "${line} 2>/dev/null |grep -v "not a dynamic executable"|grep "not found" >> "${tmpdir}/detect_ldd_not_found.tmp" + ldd "${line}" 2>/dev/null |grep -v "not a dynamic executable"|grep "not found" >> "${tmpdir}/detect_ldd_not_found.tmp" fi fi echo -n "$i / $files" $'\r'