From eb53fffc011fc398cbb306dcdc0fe0cea3e89757 Mon Sep 17 00:00:00 2001 From: Alon Bar-Lev Date: Wed, 18 Feb 2015 17:23:17 +0200 Subject: [PATCH] build: Makefile: remove bashism Signed-off-by: Alon Bar-Lev --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index f83d18689..e33fe52f7 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -433,7 +433,7 @@ ifndef WINDOWS RESULT=`$(CHECK_PRELOAD) ./$${i} | grep -v 'PASS$$' | grep -v -- '----' | grep -v '^$$'`; \ PASSED=`echo $$RESULT |grep PASSED`; \ echo " $$RESULT"; \ - if [ "$$PASSED" == "" ]; \ + if [ "$$PASSED" = "" ]; \ then \ echo "**** Failed ***************"; \ RETURN=1; \