Build: Use LC_ALL='C' when sorting.

This commit is contained in:
Scott González 2010-10-25 11:31:37 -04:00
parent 5c67ed26e8
commit 2d705873e9

View File

@ -80,7 +80,7 @@ git whatchanged $version... --pretty=format:"$format_full" \
| sed '/^:/ d' \ | sed '/^:/ d' \
| sed '/^$/ d' \ | sed '/^$/ d' \
| sed 's/\(Fixe[sd] #\)\([0-9][0-9]*\)\(.*\)\(XXXX #XXXX\)/Fixed #\2\3\2 #\2/' \ | sed 's/\(Fixe[sd] #\)\([0-9][0-9]*\)\(.*\)\(XXXX #XXXX\)/Fixed #\2\3\2 #\2/' \
| sort -f \ | LC_ALL='C' sort -f \
>> $base_dir/changelog >> $base_dir/changelog
# find all fixed tickets # find all fixed tickets
@ -118,7 +118,7 @@ $remote_cmd/generate-contributors >> $base_dir/thankyou
# sort names # sort names
echo "Sorting contributors..." echo "Sorting contributors..."
sort -f $base_dir/thankyou | uniq > $base_dir/_thankyou LC_ALL='C' sort -f $base_dir/thankyou | uniq > $base_dir/_thankyou
mv $base_dir/_thankyou $base_dir/thankyou mv $base_dir/_thankyou $base_dir/thankyou
# find all people that were thanked # find all people that were thanked