From patchwork Sun May 7 04:32:21 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Carlos Santos X-Patchwork-Id: 759394 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3wLCRL3hNsz9s8D for ; Sun, 7 May 2017 14:32:45 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 1ACD32F854; Sun, 7 May 2017 04:32:39 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id debYrz3PKYsI; Sun, 7 May 2017 04:32:37 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id 2EF612F3A7; Sun, 7 May 2017 04:32:37 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 16FB81C0F86 for ; Sun, 7 May 2017 04:32:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 0625289D60 for ; Sun, 7 May 2017 04:32:35 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 88AoeUZHNo0t for ; Sun, 7 May 2017 04:32:33 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail.datacom.ind.br (mx.datacom.ind.br [177.66.5.10]) by hemlock.osuosl.org (Postfix) with ESMTPS id DA38A89D5B for ; Sun, 7 May 2017 04:32:32 +0000 (UTC) Received: from mail.datacom.ind.br (localhost [127.0.0.1]) by mail.datacom.ind.br (Postfix) with ESMTPS id 4FAEF18A4A9C; Sun, 7 May 2017 01:32:27 -0300 (BRT) Received: from localhost (localhost [127.0.0.1]) by mail.datacom.ind.br (Postfix) with ESMTP id 42CD518A4A23; Sun, 7 May 2017 01:32:27 -0300 (BRT) Received: from mail.datacom.ind.br ([127.0.0.1]) by localhost (mail.datacom.ind.br [127.0.0.1]) (amavisd-new, port 10026) with ESMTP id pmAl0p5g3Nob; Sun, 7 May 2017 01:32:27 -0300 (BRT) Received: from p7-1130br.casantos.org (189.27.236.64.dynamic.adsl.gvt.net.br [189.27.236.64]) by mail.datacom.ind.br (Postfix) with ESMTPSA id E6DB018A4A9C; Sun, 7 May 2017 01:32:26 -0300 (BRT) From: Carlos Santos To: buildroot@buildroot.org Date: Sun, 7 May 2017 01:32:21 -0300 Message-Id: <1494131541-2960-4-git-send-email-casantos@datacom.ind.br> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1494131541-2960-1-git-send-email-casantos@datacom.ind.br> References: <1494131541-2960-1-git-send-email-casantos@datacom.ind.br> Cc: "Yann E . MORIN" Subject: [Buildroot] [PATCH v2 4/4] core: add "cmake3" to the list of cmake candidates 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" This is useful on CentOS 7, whose "cmake" utility corresponds to version 2.8.12, which is too old for Buildroot. Signed-off-by: Carlos Santos Reviewed-by: "Yann E. MORIN" --- support/dependencies/check-host-cmake.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/dependencies/check-host-cmake.mk b/support/dependencies/check-host-cmake.mk index ef080ff..07b064c 100644 --- a/support/dependencies/check-host-cmake.mk +++ b/support/dependencies/check-host-cmake.mk @@ -10,7 +10,7 @@ # BR2_CMAKE_VERSION_MIN = 3.1 -BR2_CMAKE_CANDIDATES ?= cmake +BR2_CMAKE_CANDIDATES ?= cmake cmake3 BR2_CMAKE ?= $(call suitable-host-package,cmake,\ $(BR2_CMAKE_VERSION_MIN) $(BR2_CMAKE_CANDIDATES)) ifeq ($(BR2_CMAKE),)