newlib/libc/ctype/mkcaseconv: fix POSIX shell invalid == comparison

This commit is contained in:
Brian Inglis 2023-02-17 13:56:23 -07:00 committed by Corinna Vinschen
parent 064e4bb8bb
commit 8cf9b4aaaf
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ then
diff=-1 diff=-1
} }
item () { item () {
if [ "$1" == "#error" ] if [ "$1" = "#error" ]
then echo "$*" then echo "$*"
return return
fi fi