From 1716f03fae25e393a735149b8df75ae848365fb0 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Wed, 12 Dec 2007 14:39:54 +0100 Subject: [PATCH] Make.rules: Process man pages in the C locale. --- Make.rules.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Make.rules.in b/Make.rules.in index 24d34dbc0f..9178904f62 100644 --- a/Make.rules.in +++ b/Make.rules.in @@ -182,7 +182,7 @@ LINTS = $(C_SRCS:.c=.ln) $(FONTFORGE) -script $(TOPSRCDIR)/fonts/genttf.ff $< $@ .man.in.man: - sed -e 's,@bindir\@,$(bindir),g' -e 's,@dlldir\@,$(dlldir),g' -e 's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g' $< >$@ || ($(RM) $@ && false) + LC_ALL=C sed -e 's,@bindir\@,$(bindir),g' -e 's,@dlldir\@,$(dlldir),g' -e 's,@PACKAGE_STRING\@,@PACKAGE_STRING@,g' $< >$@ || ($(RM) $@ && false) # 'all' target first in case the enclosing Makefile didn't define any target