From d7bb023597d99cc6447dcbd054de23a8285d30eb Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sun, 5 Feb 2012 19:12:11 -0500 Subject: [PATCH] QA: Fix typo in libs location check. It threw an error in a completely sane environment. --- tools/quality-agent.d/003-libs-location | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/quality-agent.d/003-libs-location b/tools/quality-agent.d/003-libs-location index 446e6fdd9..48b252151 100755 --- a/tools/quality-agent.d/003-libs-location +++ b/tools/quality-agent.d/003-libs-location @@ -37,7 +37,7 @@ function check() { fi done - if [ "${found}" = "1" ]; then + if [ "${found}" = "0" ]; then log ERROR " ${lib}.so cannot be found in the linker's search path:" log ERROR " /usr/${libdir} ${gcc_libdir}" failed=1 -- 2.39.5