commit | eb53fffc011fc398cbb306dcdc0fe0cea3e89757 | [log] [tgz] |
---|---|---|
author | Alon Bar-Lev <alon.barlev@gmail.com> | Wed Feb 18 17:23:17 2015 +0200 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Fri Mar 13 13:34:25 2015 +0000 |
tree | 44c4fb94d4193d7aea9ef7c6c5d81117b8baa1c8 | |
parent | 3b110c2d34092080377ba693347d9a09ddd7c389 [diff] [blame] |
build: Makefile: remove bashism Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com>
diff --git a/tests/Makefile b/tests/Makefile index f83d186..e33fe52 100644 --- a/tests/Makefile +++ b/tests/Makefile
@@ -433,7 +433,7 @@ 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; \