From patchwork Sat Apr 30 07:48:58 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gilles Chanteperdrix X-Patchwork-Id: 617041 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 3qxjQH4DDRz9sCg for ; Sat, 30 Apr 2016 17:49:43 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id A272D88CF0; Sat, 30 Apr 2016 07:49:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id gD4JSiTtpIM4; Sat, 30 Apr 2016 07:49:42 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 3043B89139; Sat, 30 Apr 2016 07:49:42 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id 5AF691C1E84 for ; Sat, 30 Apr 2016 07:49:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 535B32ED15 for ; Sat, 30 Apr 2016 07:49:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Improper folded header field made up entirely of whitespace (char 20 hex): X-Spam_report: ...that system for details.\n \n Content previ[...] Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id IDQo2oDW90Gj for ; Sat, 30 Apr 2016 07:49:39 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from sd-51317.xenomai.org (sd-51317.xenomai.org [62.210.215.82]) by silver.osuosl.org (Postfix) with ESMTPS id 9EA6525ACF for ; Sat, 30 Apr 2016 07:49:39 +0000 (UTC) Received: from for13-1-78-194-115-96.fbxo.proxad.net ([78.194.115.96] helo=prometheus.click-hack.org) by sd-51317.xenomai.org with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.80) (envelope-from ) id 1awPek-0004Hf-5G; Sat, 30 Apr 2016 09:49:38 +0200 From: Gilles Chanteperdrix To: buildroot@buildroot.org Date: Sat, 30 Apr 2016 09:48:58 +0200 Message-Id: <1462002570-14706-2-git-send-email-gilles.chanteperdrix@xenomai.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1462002570-14706-1-git-send-email-gilles.chanteperdrix@xenomai.org> References: <20160430074358.GE1781@hermes.click-hack.org> <1462002570-14706-1-git-send-email-gilles.chanteperdrix@xenomai.org> X-Spam_score: -1.0 X-Spam_score_int: -9 X-Spam_bar: - X-Spam_report: Spam detection software, running on the system "sd-51317.xenomai.org", has identified this incoming email as possible spam. The original message has been attached to this so you can view it (if it isn't spam) or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index ec7dccb..86b2ed2 100644 --- a/Makefile +++ b/Makefile @@ -218, 6 +218, 13 @@ ifeq ($(filter $(noconfig_targets), $(MAKECMDGOALS)), ) -include $(BR2_CONFIG) endif [...] Content analysis details: (-1.0 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP Cc: Gilles Chanteperdrix Subject: [Buildroot] [PATCH 02/34] reproducibility: override locale and timezone X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index ec7dccb..86b2ed2 100644 --- a/Makefile +++ b/Makefile @@ -218,6 +218,13 @@ ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),) -include $(BR2_CONFIG) endif +export BR2_REPRODUCIBLE +ifeq ($(BR2_REPRODUCIBLE),y) +export TZ=UTC +export LANG=C +export LC_ALL=C +endif + # To put more focus on warnings, be less verbose as default # Use 'make V=1' to see the full commands ifeq ("$(origin V)", "command line")