Skip to content
Snippets Groups Projects
Commit 6c6007d6 authored by Diego Biurrun's avatar Diego Biurrun
Browse files

Do not use ranges with tr, the results are locale-dependent.

Suggested by Rich Felker.

Originally committed as revision 11914 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 300aa2b0
No related branches found
No related tags found
No related merge requests found
...@@ -215,13 +215,13 @@ EOF ...@@ -215,13 +215,13 @@ EOF
exit 1 exit 1
} }
# "tr '[a-z]' '[A-Z]'" is a workaround for Solaris tr not grokking "tr a-z A-Z" # Avoid locale weirdness, besides we really just want to translate ASCII.
toupper(){ toupper(){
echo "$@" | tr '[a-z]' '[A-Z]' echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
} }
tolower(){ tolower(){
echo "$@" | tr '[A-Z]' '[a-z]' echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
} }
set_all(){ set_all(){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment