From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [143.182.124.37]) by mail.openembedded.org (Postfix) with ESMTP id AA4156A945 for ; Mon, 10 Jun 2013 21:45:34 +0000 (UTC) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by azsmga102.ch.intel.com with ESMTP; 10 Jun 2013 14:45:16 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="4.87,840,1363158000"; d="scan'208";a="347788820" Received: from unknown (HELO swold-linux.bigsur.com) ([10.255.12.247]) by fmsmga001.fm.intel.com with ESMTP; 10 Jun 2013 14:45:43 -0700 From: Saul Wold To: openembedded-core@lists.openembedded.org Date: Mon, 10 Jun 2013 14:45:11 -0700 Message-Id: <1370900715-29294-2-git-send-email-sgw@linux.intel.com> X-Mailer: git-send-email 1.8.1.4 In-Reply-To: <1370900715-29294-1-git-send-email-sgw@linux.intel.com> References: <1370900715-29294-1-git-send-email-sgw@linux.intel.com> Subject: [PATCH 1/5] sanity: remove warn debug message X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jun 2013 21:45:35 -0000 Signed-off-by: Saul Wold --- meta/classes/sanity.bbclass | 1 - 1 file changed, 1 deletion(-) diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 744e30d..a8e3af6 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -353,7 +353,6 @@ def check_git_version(sanity_data, loosever): if status != 0: return "Unable to execute git --version, exit code %s\n" % status version = result.split()[2] - bb.warn(version) if loosever(version) < loosever("1.7.5"): return "Your version of git is older than 1.7.5 and has bugs which will break builds. Please install a newer version of git.\n" return None -- 1.8.1.4