Commit 10bb17e3 authored by Bruce Momjian's avatar Bruce Momjian

Set locale to C before doing sort in make_ctags.

parent e1826d03
......@@ -10,6 +10,8 @@ fi
find `pwd`/ \( -name _deadcode -a -prune \) -o \
-type f -name '*.[chyl]' -print|xargs ctags "$FLAGS" -a -f tags
LANG=C
LC_ALL=C
sort tags >/tmp/$$ && mv /tmp/$$ tags
find . -name 'CVS' -prune -o -type d -print |while read DIR
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment