diff options
author | Stefan Weil | 2012-03-27 19:15:27 +0200 |
---|---|---|
committer | Stefan Hajnoczi | 2012-04-12 12:14:21 +0200 |
commit | 952ef67cc06a636fe11344e3a11137d146222bc4 (patch) | |
tree | 2de4fdda39fa153743e53be1ec84db1396ca0536 /Makefile | |
parent | configure: Fix wrong preprocessor statement (diff) | |
download | qemu-952ef67cc06a636fe11344e3a11137d146222bc4.tar.gz qemu-952ef67cc06a636fe11344e3a11137d146222bc4.tar.xz qemu-952ef67cc06a636fe11344e3a11137d146222bc4.zip |
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 <sw@weilnetz.de>
Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |