All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Prepare for EXTRA_OEMAKE = "" in oe-core bitbake.conf
@ 2016-02-09 15:20 Mike Crowe
  2016-02-09 15:20 ` [PATCH 1/3] libmatroska: Explicitly set EXTRA_OEMAKE as required Mike Crowe
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Mike Crowe @ 2016-02-09 15:20 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Mike Crowe

This series fixes even more recipes that rely on the current default
value of EXTRA_OEMAKE = "-e MAKEFLAGS=" to explicitly set that value
in the hope that bitbake.conf can set EXTRA_OEMAKE = "" in the future.

(The previous set of fourteen patches is already on master-next so
I've not sent them again.)

Mike.


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/3] libmatroska: Explicitly set EXTRA_OEMAKE as required
  2016-02-09 15:20 [PATCH 0/3] Prepare for EXTRA_OEMAKE = "" in oe-core bitbake.conf Mike Crowe
@ 2016-02-09 15:20 ` Mike Crowe
  2016-02-09 15:20 ` [PATCH 2/3] system-setup-keyboard: " Mike Crowe
  2016-02-09 15:20 ` [PATCH 3/3] wmiconfig: " Mike Crowe
  2 siblings, 0 replies; 4+ messages in thread
From: Mike Crowe @ 2016-02-09 15:20 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Mike Crowe

This recipe currently relies on EXTRA_OEMAKE having been to 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 <mac@mcrowe.com>
---
 meta-multimedia/recipes-mkv/libmatroska/libmatroska_1.4.1.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-multimedia/recipes-mkv/libmatroska/libmatroska_1.4.1.bb b/meta-multimedia/recipes-mkv/libmatroska/libmatroska_1.4.1.bb
index 95ea93d..19a7edb 100644
--- a/meta-multimedia/recipes-mkv/libmatroska/libmatroska_1.4.1.bb
+++ b/meta-multimedia/recipes-mkv/libmatroska/libmatroska_1.4.1.bb
@@ -8,6 +8,8 @@ SRC_URI = "http://dl.matroska.org/downloads/${BPN}/${BPN}-${PV}.tar.bz2"
 SRC_URI[md5sum] = "f61b2e5086f4bb9d24a43cc8af43a719"
 SRC_URI[sha256sum] = "086f21873e925679babdabf793c3bb85c353d0cd79423543a3355e08e8a4efb7"
 
+EXTRA_OEMAKE = "-e MAKEFLAGS="
+
 do_compile() {
     cd ${S}/make/linux
     oe_runmake CROSS="${TARGET_PREFIX}"
-- 
2.1.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/3] system-setup-keyboard: Explicitly set EXTRA_OEMAKE as required
  2016-02-09 15:20 [PATCH 0/3] Prepare for EXTRA_OEMAKE = "" in oe-core bitbake.conf Mike Crowe
  2016-02-09 15:20 ` [PATCH 1/3] libmatroska: Explicitly set EXTRA_OEMAKE as required Mike Crowe
@ 2016-02-09 15:20 ` Mike Crowe
  2016-02-09 15:20 ` [PATCH 3/3] wmiconfig: " Mike Crowe
  2 siblings, 0 replies; 4+ messages in thread
From: Mike Crowe @ 2016-02-09 15:20 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Mike Crowe

This recipe currently relies on EXTRA_OEMAKE having been to 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 <mac@mcrowe.com>
---
 .../system-setup-keyboard/system-setup-keyboard_0.8.8.bb                | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-oe/recipes-support/system-setup-keyboard/system-setup-keyboard_0.8.8.bb b/meta-oe/recipes-support/system-setup-keyboard/system-setup-keyboard_0.8.8.bb
index 8e913c4..fbbfa3d 100644
--- a/meta-oe/recipes-support/system-setup-keyboard/system-setup-keyboard_0.8.8.bb
+++ b/meta-oe/recipes-support/system-setup-keyboard/system-setup-keyboard_0.8.8.bb
@@ -16,6 +16,8 @@ inherit pythonnative
 
 DEPENDS = "glib-2.0 system-config-keyboard-native"
 
+EXTRA_OEMAKE = "-e MAKEFLAGS="
+
 do_compile_prepend() {
     ${PYTHON} -v get_layouts.py > keyboards.h
 }
-- 
2.1.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 3/3] wmiconfig: Explicitly set EXTRA_OEMAKE as required
  2016-02-09 15:20 [PATCH 0/3] Prepare for EXTRA_OEMAKE = "" in oe-core bitbake.conf Mike Crowe
  2016-02-09 15:20 ` [PATCH 1/3] libmatroska: Explicitly set EXTRA_OEMAKE as required Mike Crowe
  2016-02-09 15:20 ` [PATCH 2/3] system-setup-keyboard: " Mike Crowe
@ 2016-02-09 15:20 ` Mike Crowe
  2 siblings, 0 replies; 4+ messages in thread
From: Mike Crowe @ 2016-02-09 15:20 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Mike Crowe

This recipe currently relies on EXTRA_OEMAKE having been to 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 <mac@mcrowe.com>
---
 meta-oe/recipes-support/wmiconfig/wmiconfig_svn.bb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/meta-oe/recipes-support/wmiconfig/wmiconfig_svn.bb b/meta-oe/recipes-support/wmiconfig/wmiconfig_svn.bb
index 480939b..596a4e6 100644
--- a/meta-oe/recipes-support/wmiconfig/wmiconfig_svn.bb
+++ b/meta-oe/recipes-support/wmiconfig/wmiconfig_svn.bb
@@ -11,6 +11,8 @@ S = "${WORKDIR}/AR6kSDK.build_sw.18/host/tools/wmiconfig"
 
 CLEANBROKEN = "1"
 
+EXTRA_OEMAKE = "-e MAKEFLAGS="
+
 TARGET_CC_ARCH += "${LDFLAGS}"
 
 do_install() {
-- 
2.1.4



^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2016-02-09 15:20 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-02-09 15:20 [PATCH 0/3] Prepare for EXTRA_OEMAKE = "" in oe-core bitbake.conf Mike Crowe
2016-02-09 15:20 ` [PATCH 1/3] libmatroska: Explicitly set EXTRA_OEMAKE as required Mike Crowe
2016-02-09 15:20 ` [PATCH 2/3] system-setup-keyboard: " Mike Crowe
2016-02-09 15:20 ` [PATCH 3/3] wmiconfig: " Mike Crowe

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.