Skip to content

Commit 997813b

Browse files
Copilotkrlmlr
andauthored
fix: Use LC_ALL=C instead of LOCALE=C in deps.mk (#2447)
Co-authored-by: copilot-swe-agent[bot] <[email protected]> Co-authored-by: krlmlr <[email protected]>
1 parent 24c0abc commit 997813b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/deps.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ include $(GLUE_CPP_SOURCES:.o=.dd)
55
# Include only local dependencies for smaller footprint
66
# Add trailing backslash and sort
77
%.dd: %.d
8-
sed -r 's/([^ ]) ([^ \\])/\1 \\\n \2/g' $< | sed -r '/^ ([/]|vendor|[.][.])/D;$$s/([^\\])$$/\1 \\/' | { echo "# Generated by deps.mk, do not edit by hand and do not add dependencies to system headers"; read -r header; printf '%s\n' "$$header"; LOCALE=C sort; } > $@
8+
sed -r 's/([^ ]) ([^ \\])/\1 \\\n \2/g' $< | sed -r '/^ ([/]|vendor|[.][.])/D;$$s/([^\\])$$/\1 \\/' | { echo "# Generated by deps.mk, do not edit by hand and do not add dependencies to system headers"; read -r header; printf '%s\n' "$$header"; LC_ALL=C sort; } > $@

0 commit comments

Comments
 (0)