From patchwork Fri Apr 13 09:39:13 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Stefan Hajnoczi X-Patchwork-Id: 152272 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id ACCFDB6EEC for ; Fri, 13 Apr 2012 19:59:59 +1000 (EST) Received: from localhost ([::1]:54524 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SIczG-0005xn-3v for incoming@patchwork.ozlabs.org; Fri, 13 Apr 2012 05:40:14 -0400 Received: from eggs.gnu.org ([208.118.235.92]:44510) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SIcyg-0004gS-86 for qemu-devel@nongnu.org; Fri, 13 Apr 2012 05:39:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1SIcyX-0001Nu-2k for qemu-devel@nongnu.org; Fri, 13 Apr 2012 05:39:37 -0400 Received: from e06smtp16.uk.ibm.com ([195.75.94.112]:34322) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1SIcyW-0001N7-Qb for qemu-devel@nongnu.org; Fri, 13 Apr 2012 05:39:29 -0400 Received: from /spool/local by e06smtp16.uk.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 13 Apr 2012 10:39:25 +0100 Received: from d06nrmr1507.portsmouth.uk.ibm.com (9.149.38.233) by e06smtp16.uk.ibm.com (192.168.101.146) with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted; Fri, 13 Apr 2012 10:39:22 +0100 Received: from d06av08.portsmouth.uk.ibm.com (d06av08.portsmouth.uk.ibm.com [9.149.37.249]) by d06nrmr1507.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id q3D9dLKS2429100 for ; Fri, 13 Apr 2012 10:39:21 +0100 Received: from d06av08.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av08.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id q3D9dLYG002255 for ; Fri, 13 Apr 2012 03:39:21 -0600 Received: from localhost (dyn-9-174-219-44.manchester-maybrook.uk.ibm.com [9.174.219.44]) by d06av08.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id q3D9dLjJ002246; Fri, 13 Apr 2012 03:39:21 -0600 From: Stefan Hajnoczi To: Anthony Liguori Date: Fri, 13 Apr 2012 10:39:13 +0100 Message-Id: <1334309956-31827-4-git-send-email-stefanha@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1334309956-31827-1-git-send-email-stefanha@linux.vnet.ibm.com> References: <1334309956-31827-1-git-send-email-stefanha@linux.vnet.ibm.com> x-cbid: 12041309-3548-0000-0000-0000019B47D6 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 195.75.94.112 Cc: Stefan Weil , qemu-devel@nongnu.org, Stefan Hajnoczi Subject: [Qemu-devel] [PATCH 3/6] make: Always set LC_ALL=C for makeinfo X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org From: Stefan Weil 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 a78f53d..e0fe680 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