From: ellson Date: Wed, 11 Oct 2006 12:59:49 +0000 (+0000) Subject: Fix bug# 1030 - LC_COLLATE ignored if user has LC_ALL in environment. Use LC_ALL... X-Git-Tag: LAST_LIBGRAPH~32^2~5835 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=563f3ec9a79a7a15be41e717c7783c97bea570a4;p=graphviz Fix bug# 1030 - LC_COLLATE ignored if user has LC_ALL in environment. Use LC_ALL instead. --- diff --git a/lib/common/Makefile.am b/lib/common/Makefile.am index 0a8756b39..ad7605a8a 100644 --- a/lib/common/Makefile.am +++ b/lib/common/Makefile.am @@ -31,7 +31,7 @@ fontmetrics.o fontmetrics.lo: ps_font_equiv.h # ensure font names are properly sorted for bsearch operation ps_font_equiv.h: $(srcdir)/ps_font_equiv.txt - LC_COLLATE=C $(SORT) <$(srcdir)/ps_font_equiv.txt >ps_font_equiv.h + LC_ALL=C $(SORT) <$(srcdir)/ps_font_equiv.txt >ps_font_equiv.h utils.o utils.lo : ps.h @@ -45,7 +45,7 @@ colortbl.h : color_lib # ensure color names are properly sorted for bsearch operation color_lib : brewer_lib $(top_srcdir)/lib/common/color_names - cat brewer_lib $(top_srcdir)/lib/common/color_names | LC_COLLATE=C $(SORT) > color_lib + cat brewer_lib $(top_srcdir)/lib/common/color_names | LC_ALL=C $(SORT) > color_lib brewer_lib : $(top_srcdir)/lib/common/brewer_colors $(top_srcdir)/awk/brewer.awk $(AWK) -f $(top_srcdir)/awk/brewer.awk $(top_srcdir)/lib/common/brewer_colors > brewer_lib