mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Makefile: improve build reproducibilty by using LC_ALL=C in sort
Based on https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=791648
(cherry picked from commit a311f49eda
)
This commit is contained in:
parent
9a092ec015
commit
240bb25dbe
1 changed files with 1 additions and 1 deletions
|
@ -397,7 +397,7 @@ test_interactive: $(call filter_up_to,test_interactive,$(active_test_goals))
|
||||||
doc_src/commands.hdr:$(HELP_SRC) doc_src/commands.hdr.in |
|
doc_src/commands.hdr:$(HELP_SRC) doc_src/commands.hdr.in |
|
||||||
@echo " CAT AWK $(em)$@$(sgr0)"
|
@echo " CAT AWK $(em)$@$(sgr0)"
|
||||||
$v rm -f command_list.tmp command_list_toc.tmp $@
|
$v rm -f command_list.tmp command_list_toc.tmp $@
|
||||||
$v for i in $(sort $(HELP_SRC)); do \
|
$v for i in `printf "%s\n" $(HELP_SRC) | LC_ALL=C.UTF-8 sort`; do \
|
||||||
echo "<hr>" >>command_list.tmp; \
|
echo "<hr>" >>command_list.tmp; \
|
||||||
cat $$i >>command_list.tmp; \
|
cat $$i >>command_list.tmp; \
|
||||||
echo >>command_list.tmp; \
|
echo >>command_list.tmp; \
|
||||||
|
|
Loading…
Reference in a new issue