From 011ad7efec6eea7f83242197765f492df933941b Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 2 Feb 2004 17:29:32 +0000 Subject: [PATCH] Set only LC_ALL for sort in tags creation. --- src/tools/make_ctags | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/make_ctags b/src/tools/make_ctags index 4ce985b082..da1ee8fcc9 100755 --- a/src/tools/make_ctags +++ b/src/tools/make_ctags @@ -10,8 +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 +export LC_ALL sort tags >/tmp/$$ && mv /tmp/$$ tags find . -name 'CVS' -prune -o -type d -print |while read DIR -- GitLab