Fix portability issue in Makefile

The == test operator is not defined by POSIX
This commit is contained in:
Manuel Pégourié-Gonnard 2015-04-02 09:51:03 +01:00
parent 0878a0d884
commit 70b8b37b4b

View File

@ -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 [ "x$$PASSED" = "x" ]; \
then \
echo "**** Failed ***************"; \
RETURN=1; \