From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by yocto-www.yoctoproject.org (Postfix, from userid 118) id 5B9E2E0095F; Fri, 18 Nov 2016 13:51:29 -0800 (PST) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on yocto-www.yoctoproject.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham version=3.3.1 X-Spam-HAM-Report: * -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% * [score: 0.0000] Received: from mailout4.zoneedit.com (mailout4.zoneedit.com [64.68.198.17]) by yocto-www.yoctoproject.org (Postfix) with ESMTP id 6DD42E0089B for ; Fri, 18 Nov 2016 13:51:27 -0800 (PST) Received: from localhost (localhost [127.0.0.1]) by mailout4.zoneedit.com (Postfix) with ESMTP id B15EC20AF0; Fri, 18 Nov 2016 21:51:26 +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 VZ_C5mZXHBv9; Fri, 18 Nov 2016 21:51:26 +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 8E631204AF; Fri, 18 Nov 2016 21:51:25 +0000 (UTC) Received: from sam.denix (sam [192.168.0.5]) by gandalf.denix.org (Postfix) with ESMTP id C8D8E16219D; Fri, 18 Nov 2016 16:51:24 -0500 (EST) From: Denys Dmytriyenko To: meta-ti@yoctoproject.org Date: Fri, 18 Nov 2016 16:51:23 -0500 Message-Id: <1479505884-9325-1-git-send-email-denis@denix.org> X-Mailer: git-send-email 2.7.4 Subject: [PATCH 1/2] dsptop: fix build with any toolchain by passing correct CC var X-BeenThere: meta-ti@yoctoproject.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Usage and development list for the meta-ti layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 18 Nov 2016 21:51:29 -0000 From: Denys Dmytriyenko Signed-off-by: Denys Dmytriyenko --- recipes-bsp/dsptop/dsptop_git.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/recipes-bsp/dsptop/dsptop_git.bb b/recipes-bsp/dsptop/dsptop_git.bb index 121dc9b..70f9166 100644 --- a/recipes-bsp/dsptop/dsptop_git.bb +++ b/recipes-bsp/dsptop/dsptop_git.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://debian/copyright;md5=309825aa8f5edfcf2c44912ac094b979 DEPENDS = "libulm ncurses" -PR = "${INC_PR}.1" +PR = "${INC_PR}.2" S = "${WORKDIR}/git/dsptop" @@ -12,7 +12,7 @@ DEVICE = "" DEVICE_dra7xx = "DRA7xx" DEVICE_keystone = "C66AK2Hxx" -EXTRA_OEMAKE = "release DEVICE=${DEVICE} CROSS_COMPILE=${TARGET_PREFIX}" +EXTRA_OEMAKE = "release DEVICE=${DEVICE} CROSS_COMPILE=${TARGET_PREFIX} CC="${CC}"" do_install() { oe_runmake install DESTDIR=${D} -- 2.7.4