Skip to content

Commit 8eb897f

Browse files
committed
Use sort command in LANG=C
1 parent ba80b3a commit 8eb897f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ AUTHORS.md: AUTHORS.md.in
1515
@printf "Generating AUTHORS.md file..."
1616
@test -d .git \
1717
&& (cat $< > $@ \
18-
&& git log --pretty=format:'- %aN' | sort -u >> $@ \
18+
&& git log --pretty=format:'- %aN' | LANG=C sort -u >> $@ \
1919
&& printf "FINISHED\n" ; ) \
2020
|| printf "FAILED (non-fatal)\n"
2121

0 commit comments

Comments
 (0)