image: remove spaces from toupper function
The extra prefix space is passed to the caller. Signed-off-by: Luka Perkov <luka@openwrt.org> SVN-Revision: 38855
This commit is contained in:
parent
03fcc9bf43
commit
fbe8d27c7f
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ define add_jffs2_mark
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define toupper
|
define toupper
|
||||||
$(shell echo $(1) | tr '[:lower:]' '[:upper:]')
|
$(shell echo $(1) | tr '[:lower:]' '[:upper:]')
|
||||||
endef
|
endef
|
||||||
|
|
||||||
# pad to 4k, 8k, 64k, 128k 256k and add jffs2 end-of-filesystem mark
|
# pad to 4k, 8k, 64k, 128k 256k and add jffs2 end-of-filesystem mark
|
||||||
|
|
Loading…
Reference in a new issue