projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1826d0
)
Set locale to C before doing sort in make_ctags.
author
Bruce Momjian
<bruce@momjian.us>
Sun, 1 Feb 2004 23:11:33 +0000
(23:11 +0000)
committer
Bruce Momjian
<bruce@momjian.us>
Sun, 1 Feb 2004 23:11:33 +0000
(23:11 +0000)
src/tools/make_ctags
patch
|
blob
|
blame
|
history
diff --git
a/src/tools/make_ctags
b/src/tools/make_ctags
index 072b9bb9d28bbeb662fabbb954b86e450a9ffe30..4ce985b08213b8921ee43a04efeab45977e668ba 100755
(executable)
--- a/
src/tools/make_ctags
+++ b/
src/tools/make_ctags
@@
-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