mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-18 14:42:24 +00:00
Fix portability issue in Makefile
The == test operator is not defined by POSIX
This commit is contained in:
parent
0878a0d884
commit
70b8b37b4b
@ -433,7 +433,7 @@ ifndef WINDOWS
|
|||||||
RESULT=`$(CHECK_PRELOAD) ./$${i} | grep -v 'PASS$$' | grep -v -- '----' | grep -v '^$$'`; \
|
RESULT=`$(CHECK_PRELOAD) ./$${i} | grep -v 'PASS$$' | grep -v -- '----' | grep -v '^$$'`; \
|
||||||
PASSED=`echo $$RESULT |grep PASSED`; \
|
PASSED=`echo $$RESULT |grep PASSED`; \
|
||||||
echo " $$RESULT"; \
|
echo " $$RESULT"; \
|
||||||
if [ "$$PASSED" = "" ]; \
|
if [ "x$$PASSED" = "x" ]; \
|
||||||
then \
|
then \
|
||||||
echo "**** Failed ***************"; \
|
echo "**** Failed ***************"; \
|
||||||
RETURN=1; \
|
RETURN=1; \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user