From 952ef67cc06a636fe11344e3a11137d146222bc4 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Tue, 27 Mar 2012 19:15:27 +0200 Subject: [PATCH] make: Always set LC_ALL=C for makeinfo Otherwise the generated file qemu-doc.html will contain "Anhang" instead of "Appendix" with a German locale (de_DE.UTF-8). Signed-off-by: Stefan Weil Signed-off-by: Stefan Hajnoczi --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a78f53d4c9..e0fe680c39 100644 --- a/Makefile +++ b/Makefile @@ -328,7 +328,7 @@ TEXIFLAG=$(if $(V),,--quiet) $(call quiet-command,texi2dvi $(TEXIFLAG) -I . $<," GEN $@") %.html: %.texi - $(call quiet-command,$(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \ + $(call quiet-command,LC_ALL=C $(MAKEINFO) $(MAKEINFOFLAGS) --html $< -o $@, \ " GEN $@") %.info: %.texi -- 2.39.2