commit | 70b8b37b4ba7c9aad345a3543c169cc73b8d3117 | [log] [tgz] |
---|---|---|
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Thu Apr 02 09:51:03 2015 +0100 |
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | Thu Apr 02 09:51:03 2015 +0100 |
tree | 87a4ed6ec176f4275575e392caee41207f46e54f | |
parent | 0878a0d88415a570645de27fb681565a65aecb9c [diff] |
Fix portability issue in Makefile The == test operator is not defined by POSIX
diff --git a/tests/Makefile b/tests/Makefile index 180da87..25b704a 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 [ "x$$PASSED" = "x" ]; \ then \ echo "**** Failed ***************"; \ RETURN=1; \