From mboxrd@z Thu Jan 1 00:00:00 1970 X-GM-THRID: 6487873561298993152 X-Received: by 10.28.208.11 with SMTP id h11mr373586wmg.28.1510575777243; Mon, 13 Nov 2017 04:22:57 -0800 (PST) X-BeenThere: isar-users@googlegroups.com Received: by 10.28.45.212 with SMTP id t203ls894997wmt.7.canary-gmail; Mon, 13 Nov 2017 04:22:56 -0800 (PST) X-Google-Smtp-Source: AGs4zMaywPDPqI4Re5T4IvULJTXOKBXAktJmkV3uD+cySIgUHQ6aootdBtLfkXNZOA5ajoJVJ1KJ X-Received: by 10.28.132.202 with SMTP id g193mr991433wmd.24.1510575776710; Mon, 13 Nov 2017 04:22:56 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1510575776; cv=none; d=google.com; s=arc-20160816; b=vWK0liAgd8WlCGxfvGePST+IggANHvsbvsSbCBzMhu3Jj4SxChTQ/yd5W67yE8vO5u ranW8HKewia8fc1MYheOrhDycUx/+PVRjInlYSaAZOHSXY/WWKMjwARuRWCv5FGgN1g0 tNqLREZV4Fjb5urOyvi6l+1lApJSG/XbUrAZ10PvQt6jNrok5DZH5AH3iliA4n8VTYwz rTfqwwev2aLgOZGKezm7olLMcj6Uq2y0RNDV5PFhKuXjNTJoc4bvT8AAh12oBkcKezx9 NRFmxd4nj+gnpqfoI2szI026vQHx6A9m6mq7eL3BeBQBtKRy1ckLObdUqYRGPhfeIU0R GUOA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=message-id:date:subject:cc:to:from:arc-authentication-results; bh=/MKbwTLrLUleIVOI2qoTa1y3GC00x7ZGY1KdrY58Px8=; b=rgSEipUjs9kK1qNVI91DZYz11XT1zlpXKvgYa8uietotftmQeccOalTYTGUpKWIjhJ MBEpU/oG747H/Rn74+6u5ANJ5cmfVfHk5Z9f3Ua8rVALe+ozsQW+7kAPbluywhDHazxx 9EninhJXwMbKIAZrAf0a6rUbmFO0ZRbkD5Uf7V01ngQaVZ1lkCUrZIWtXJGZGx4CjL8Y OKC4b3aTtsZcfi4hCNs4ISiUun7L4VIwARqpIBlVdPIbJ1g3GxyOqIaz9uJMrRv1n25V x+85ae5ZtDng5BLf9a8QINAfeXkA+bDOl/56Umgkb8jShmO/yy7bAXH8TaJdxbN1Gk6h GjNQ== ARC-Authentication-Results: i=1; gmr-mx.google.com; spf=pass (google.com: domain of christian.storm@siemens.com designates 192.35.17.14 as permitted sender) smtp.mailfrom=christian.storm@siemens.com Return-Path: Received: from david.siemens.de (david.siemens.de. [192.35.17.14]) by gmr-mx.google.com with ESMTPS id f8si1229801wrf.0.2017.11.13.04.22.56 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 13 Nov 2017 04:22:56 -0800 (PST) Received-SPF: pass (google.com: domain of christian.storm@siemens.com designates 192.35.17.14 as permitted sender) client-ip=192.35.17.14; Authentication-Results: gmr-mx.google.com; spf=pass (google.com: domain of christian.storm@siemens.com designates 192.35.17.14 as permitted sender) smtp.mailfrom=christian.storm@siemens.com Received: from mail3.siemens.de (mail3.siemens.de [139.25.208.14]) by david.siemens.de (8.15.2/8.15.2) with ESMTPS id vADCMuEm007952 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Mon, 13 Nov 2017 13:22:56 +0100 Received: from MD1KR9XC.ww002.siemens.net ([139.25.69.251]) by mail3.siemens.de (8.15.2/8.15.2) with ESMTP id vADCMuEH005850; Mon, 13 Nov 2017 13:22:56 +0100 From: Christian Storm To: isar-users@googlegroups.com Cc: Christian Storm Subject: [PATCH] build.sh: Fix perl complaints about locale Date: Mon, 13 Nov 2017 13:21:51 +0100 Message-Id: <20171113122151.19409-1-christian.storm@siemens.com> X-Mailer: git-send-email 2.15.0 X-TUID: CgNwyrnTF/8z The log.do_build is flooded by perl's locale complaints: perl: warning: Setting locale failed. perl: warning: Please check that your locale settings: LANGUAGE = (unset), LC_ALL = "en_US.UTF-8", LANG = (unset) are supported and installed on your system. perl: warning: Falling back to the standard locale ("C"). Make perl happy by explicitly giving it the C locale. Signed-off-by: Christian Storm --- meta/recipes-devtools/buildchroot/files/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/buildchroot/files/build.sh b/meta/recipes-devtools/buildchroot/files/build.sh index 19d554e..e53d359 100644 --- a/meta/recipes-devtools/buildchroot/files/build.sh +++ b/meta/recipes-devtools/buildchroot/files/build.sh @@ -23,4 +23,4 @@ for i in configure aclocal.m4 Makefile.am Makefile.in; do done # Build the package -dpkg-buildpackage +LC_ALL=C LANGUAGE=C LANG=C dpkg-buildpackage -- 2.15.0