Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 10bb17e

Browse files
committed
Set locale to C before doing sort in make_ctags.
1 parent e1826d0 commit 10bb17e

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/tools/make_ctags

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ fi
1010
find `pwd`/ \( -name _deadcode -a -prune \) -o \
1111
-type f -name '*.[chyl]' -print|xargs ctags "$FLAGS" -a -f tags
1212

13+
LANG=C
14+
LC_ALL=C
1315
sort tags >/tmp/$$ && mv /tmp/$$ tags
1416

1517
find . -name 'CVS' -prune -o -type d -print |while read DIR

0 commit comments

Comments
 (0)