summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMarek Vasut <marex@denx.de>2023-07-20 15:50:42 +0300
committerTom Rini <trini@konsulko.com>2023-07-25 19:44:47 +0300
commit779e38a5f54556ede4068c908c4a8f8bba7558f8 (patch)
tree9399c24cb317915606ec73a44778bb46d09e1de9 /Makefile
parentfdfbd70da69bce709253a0d84b7908786a0cc40d (diff)
downloadu-boot-779e38a5f54556ede4068c908c4a8f8bba7558f8.tar.xz
Makefile: Use sort shortopts
POSIX does not defined longopts for sort, use shortops for even more 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: Mark Kettenis <kettenis@openbsd.org> Tested-by: Milan P. Stanić <mps@arvanta.net>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 87f9fc786e..5fc16b3b1f 100644
--- a/Makefile
+++ b/Makefile
@@ -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 -t '=' -k 1,1 -s -o $@
u-boot-initial-env: $(env_h) FORCE
$(Q)$(MAKE) $(build)=tools $(objtree)/tools/printinitialenv