From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.17]) by arago-project.org (Postfix) with ESMTPS id 0795552A20 for ; Fri, 18 Nov 2016 22:09:53 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mailout4.zoneedit.com (Postfix) with ESMTP id 195A820B01; Fri, 18 Nov 2016 22:09:54 +0000 (UTC) Received: from mailout4.zoneedit.com ([127.0.0.1]) by localhost (zmo03-pco.easydns.vpn [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XqNsAaw2LZ0P; Fri, 18 Nov 2016 22:09:54 +0000 (UTC) Received: from gandalf.denix.org (pool-100-15-95-79.washdc.fios.verizon.net [100.15.95.79]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mailout4.zoneedit.com (Postfix) with ESMTPSA id 9BA4F20AB6; Fri, 18 Nov 2016 22:09:52 +0000 (UTC) Received: from sam.denix (sam [192.168.0.5]) by gandalf.denix.org (Postfix) with ESMTP id C9E3C1621A8; Fri, 18 Nov 2016 17:09:51 -0500 (EST) From: Denys Dmytriyenko To: meta-arago@arago-project.org Date: Fri, 18 Nov 2016 17:09:46 -0500 Message-Id: <1479506990-10407-5-git-send-email-denis@denix.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1479506990-10407-1-git-send-email-denis@denix.org> References: <1479506990-10407-1-git-send-email-denis@denix.org> Subject: [PATCH 4/8] am-sysinfo: fix build with any toolchain, pass CC var X-BeenThere: meta-arago@arago-project.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Arago metadata layer for TI SDKs - OE-Core/Yocto compatible List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Nov 2016 22:09:54 -0000 From: Denys Dmytriyenko Signed-off-by: Denys Dmytriyenko --- meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb b/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb index 0fa7366..207c24d 100644 --- a/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb +++ b/meta-arago-extras/recipes-core/am-sysinfo/am-sysinfo_git.bb @@ -1,4 +1,4 @@ -DESCRIPTION = "AM SysInfo" +SUMMARY = "AM SysInfo" HOMEPAGE = "https://gforge.ti.com/gf/project/am_sysinfo/" LICENSE = "BSD" LIC_FILES_CHKSUM = "file://mem_util/mem_util.c;beginline=1;endline=37;md5=8aa8e714ab729cfe8177298af8a5a25d" @@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://mem_util/mem_util.c;beginline=1;endline=37;md5=8aa8e7 SECTION = "system" PACKAGE_STRIP = "no" -PR = "r9" +PR = "r10" BRANCH ?= "master" SRCREV = "5df7da69a50d27b7f594db0918c5e6793c3a6237" @@ -16,11 +16,10 @@ SRC_URI = "git://git.ti.com/apps/am_sysinfo.git;protocol=git;branch=${BRANCH}" S = "${WORKDIR}/git" do_compile() { - export CROSS_COMPILE=${TARGET_PREFIX} export CFLAGS='${TARGET_CC_ARCH}' # build the release version - oe_runmake release + oe_runmake release CC="${CC}" } do_install() { -- 2.7.4