Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Inglis <Brian.Inglis@Shaw.ca>2023-02-17 23:56:23 +0300
committerCorinna Vinschen <corinna@vinschen.de>2023-02-20 12:46:54 +0300
commit8cf9b4aaafb449cc8254a1e1bf5216bfe241641f (patch)
tree97306cc6d75aa6a7077d6939e0c42758374adbf5 /newlib/libc/ctype
parent064e4bb8bb4236822c23ed63d419ba081f1e524a (diff)
newlib/libc/ctype/mkcaseconv: fix POSIX shell invalid == comparison
Diffstat (limited to 'newlib/libc/ctype')
-rwxr-xr-xnewlib/libc/ctype/mkcaseconv2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/libc/ctype/mkcaseconv b/newlib/libc/ctype/mkcaseconv
index ab0571d8f..a455aed16 100755
--- a/newlib/libc/ctype/mkcaseconv
+++ b/newlib/libc/ctype/mkcaseconv
@@ -89,7 +89,7 @@ then
diff=-1
}
item () {
- if [ "$1" == "#error" ]
+ if [ "$1" = "#error" ]
then echo "$*"
return
fi