mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-24 21:54:01 +00:00
Makefile: fix processing of default environment file
Allow the default environment file to contain long lines split into multiples lines. Leading white spaces can be added for readability as well. Signed-off-by: Samuel Mescoff <samuel@mescoff.fr> Acked-by: Joe Hershberger <joe.hershberger@ni.com>
This commit is contained in:
parent
d16e18ca6c
commit
4b7f5f3e75
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -1830,7 +1830,7 @@ define filechk_defaultenv.h
|
|||
(grep -v '^#' | \
|
||||
grep -v '^$$' | \
|
||||
tr '\n' '\0' | \
|
||||
sed -e 's/\\\x0/\n/g' | \
|
||||
sed -e 's/\\\x0\s*//g' | \
|
||||
xxd -i ; echo ", 0x00" ; )
|
||||
endef
|
||||
|
||||
|
|
Loading…
Reference in a new issue