build system: fix sorting + locale in make objsizes
authorDenis Vlasenko <vda.linux@googlemail.com>
Mon, 1 Dec 2008 12:36:41 +0000 (12:36 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Mon, 1 Dec 2008 12:36:41 +0000 (12:36 -0000)
scripts/objsizes

index 09de11407fa319d08234e665be00062a1b5eab47..26ea493be7ebd0569216024a7b966f44f7ef837a 100755 (executable)
@@ -16,4 +16,4 @@ while read text data bss dec hex filename; do
     printf "%9d %11d %9d %9d %s\n" $((text+data)) $text $data $bss "$filename"
 done
 printf "%9d %11d %9d %9d %s\n" $((t_text+t_data)) $t_text $t_data $t_bss "TOTAL"
-} | sort -r
+} | env -u LANG sort -r