diff options
author | Marek Vasut | 2023-07-11 14:15:53 +0200 |
---|---|---|
committer | Tom Rini | 2023-07-17 15:38:11 -0400 |
commit | f59f5a869d4cd1941325dd0f5991c33950ce488e (patch) | |
tree | 2a42909144fc5cdc2e154cb5987c5ec3fd40226c /Makefile | |
parent | 2c120676bad1ecb6aff51b4309cb61be1dbc0695 (diff) |
Makefile: Add missing quotes around sort --field-separator
Busybox sort does not handle --field-separator== , replace this
with --field-separator='=' for maximum compatibility.
Fixes: cc5a490cf465 ("Makefile: Sort u-boot-initial-env output")
Reported-by: Milan P. Stanić <mps@arvanta.net>
Signed-off-by: Marek Vasut <marex@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2444,7 +2444,7 @@ quiet_cmd_genenv = GENENV $@ cmd_genenv = \ $(objtree)/tools/printinitialenv | \ sed -e '/^\s*$$/d' | \ - sort --field-separator== -k1,1 --stable -o $@ + sort --field-separator='=' -k1,1 --stable -o $@ u-boot-initial-env: $(env_h) FORCE $(Q)$(MAKE) $(build)=tools $(objtree)/tools/printinitialenv |