From 563f3ec9a79a7a15be41e717c7783c97bea570a4 Mon Sep 17 00:00:00 2001 From: ellson Date: Wed, 11 Oct 2006 12:59:49 +0000 Subject: [PATCH] Fix bug# 1030 - LC_COLLATE ignored if user has LC_ALL in environment. Use LC_ALL instead. --- lib/common/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.50.1