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 3AEE5772AD for ; Fri, 5 Feb 2016 18:04:44 +0000 (UTC) Received: from [82.1.213.155] (HELO elite.brightsign6) by relay.appriver.com (CommuniGate Pro SMTP 6.1.2) with ESMTP id 684771811; Fri, 05 Feb 2016 13:04:44 -0500 Received: from chuckie.brightsign ([172.30.1.25] helo=chuckie) by elite.brightsign6 with esmtp (Exim 4.84) (envelope-from ) id 1aRkkM-000CXQ-7U; Fri, 05 Feb 2016 18:04:42 +0000 Received: from mac by chuckie with local (Exim 4.84) (envelope-from ) id 1aRkkM-0002DG-75; Fri, 05 Feb 2016 18:04:42 +0000 From: Mike Crowe To: openembedded-core@lists.openembedded.org Date: Fri, 5 Feb 2016 18:04:17 +0000 Message-Id: <1454695470-8205-3-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 02/15] pciutils: 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:44 -0000 The openssl 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-bsp/pciutils/pciutils_3.4.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-bsp/pciutils/pciutils_3.4.1.bb b/meta/recipes-bsp/pciutils/pciutils_3.4.1.bb index 794419a..33be525 100644 --- a/meta/recipes-bsp/pciutils/pciutils_3.4.1.bb +++ b/meta/recipes-bsp/pciutils/pciutils_3.4.1.bb @@ -38,7 +38,7 @@ export SBINDIR = "${sbindir}" export SHAREDIR = "${datadir}" export MANDIR = "${mandir}" -EXTRA_OEMAKE += "${PCI_CONF_FLAG}" +EXTRA_OEMAKE = "-e MAKEFLAGS= ${PCI_CONF_FLAG}" # The configure script breaks if the HOST variable is set HOST[unexport] = "1" -- 2.1.4