Skip to content
Snippets Groups Projects
Commit 1aaab9bf authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

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: default avatarWolfgang Denk <wd@denx.de>
parent 8f8b52ea
No related branches found
No related tags found
No related merge requests found
Loading
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