]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commit
Generation of locales: made call to tr more robust and added LOWERCASE macro
authorThierry Bultel <thierry.bultel@wanadoo.fr>
Sun, 10 Nov 2013 17:32:52 +0000 (18:32 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Sun, 10 Nov 2013 22:41:28 +0000 (23:41 +0100)
commit6fb546ca41955335a6fa8ed403e616ae2ff31a29
tree1e370035267966a5793540eba6beedfe68932ab3
parentfa510dee2842201a08f01d56b6b4144bbaf1d08a
Generation of locales: made call to tr more robust and added LOWERCASE macro

When calling 'tr' without quoting braces, bash can make really weird things
if there are existing 'single-letter-named' directories
eg:
thierry@thierry-desktop:~$ echo AAA | tr [A-Z] [a-z]
aaa
thierry@thierry-desktop:~$ mkdir m
thierry@thierry-desktop:~$ echo AAA | tr [A-Z] [a-z]
AAA

The (quick) analysis is that the callee (tr) argvs then
contain 'm' thus the translation does not work

Using quotes works around it:
thierry@thierry-desktop:~$ echo AAA | tr '[A-Z]' '[a-z]'
aaa

Signed-off-by: Thierry Bultel <thierry.bultel@wanadoo.fr>
Reviewed-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Makefile
package/pkg-utils.mk