From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from relay.appriver.com (relay.appriver.com [207.97.230.34]) by mail.openembedded.org (Postfix) with ESMTP id 95A84772D8 for ; Fri, 5 Feb 2016 18:04:45 +0000 (UTC) Received: from [82.1.213.155] (HELO elite.brightsign6) by relay.appriver.com (CommuniGate Pro SMTP 6.1.2) with ESMTP id 684771778; Fri, 05 Feb 2016 13:04:46 -0500 Received: from chuckie.brightsign ([172.30.1.25] helo=chuckie) by elite.brightsign6 with esmtp (Exim 4.84) (envelope-from ) id 1aRkkO-000CXg-2Q; Fri, 05 Feb 2016 18:04:44 +0000 Received: from mac by chuckie with local (Exim 4.84) (envelope-from ) id 1aRkkO-0002Dz-1i; Fri, 05 Feb 2016 18:04:44 +0000 From: Mike Crowe To: openembedded-core@lists.openembedded.org Date: Fri, 5 Feb 2016 18:04:21 +0000 Message-Id: <1454695470-8205-7-git-send-email-mac@mcrowe.com> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1454695470-8205-1-git-send-email-mac@mcrowe.com> References: <1454695470-8205-1-git-send-email-mac@mcrowe.com> Cc: Mike Crowe Subject: [PATCH 06/15] dmidecode: Explicitly set EXTRA_OEMAKE as required 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: Fri, 05 Feb 2016 18:04:45 -0000 This recipe currently relies on EXTRA_OEMAKE having been set to "-e MAKEFLAGS=" in bitbake.conf to operate. It is necessary to make this explicit so that the default in bitbake.conf can be changed. Signed-off-by: Mike Crowe --- meta/recipes-devtools/dmidecode/dmidecode_3.0.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta/recipes-devtools/dmidecode/dmidecode_3.0.bb b/meta/recipes-devtools/dmidecode/dmidecode_3.0.bb index 8e532ad..109a9d2 100644 --- a/meta/recipes-devtools/dmidecode/dmidecode_3.0.bb +++ b/meta/recipes-devtools/dmidecode/dmidecode_3.0.bb @@ -7,6 +7,8 @@ SRC_URI = "${SAVANNAH_NONGNU_MIRROR}/dmidecode/${BP}.tar.xz" COMPATIBLE_HOST = "(i.86|x86_64|aarch64|arm|powerpc|powerpc64).*-linux" +EXTRA_OEMAKE = "-e MAKEFLAGS=" + do_install() { oe_runmake DESTDIR="${D}" install } -- 2.1.4