commit | 111d606588c5d35c849fca2e2de0cb8de79d853a | [log] [tgz] |
---|---|---|
author | Wolfgang Denk <wd@denx.de> | Wed Jan 02 15:54:45 2008 +0100 |
committer | Wolfgang Denk <wd@denx.de> | Wed Jan 02 15:54:45 2008 +0100 |
tree | 572bd02a0888577ae17373cad54c32eeaa3b45c0 | |
parent | 4b61e3366d3d2bdbbb59f04c8ca6ef1e26c30dd1 [diff] |
Make scripts and Makefiles POSIX compliant The bash builtin versions of the "test" (resp. "[") command allow using "==" for string comparisons, but POSIX compatible implemen- tations (like /usr/bin/test) insist on using "=" only. On such systems you will see: $ /usr/bin/test a == a && echo OK /usr/bin/test: ==: binary operator expected This patch fixes Makefiles and scripts to use POSIX style. Signed-off-by: Wolfgang Denk <wd@denx.de>