From: Bruce Momjian Date: Mon, 2 Feb 2004 17:29:32 +0000 (+0000) Subject: Set only LC_ALL for sort in tags creation. X-Git-Tag: REL8_0_0BETA1~1235 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=011ad7efec6eea7f83242197765f492df933941b;p=postgresql Set only LC_ALL for sort in tags creation. --- 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