diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2016-02-23 17:17:13 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-02-25 17:47:28 +0100 |
commit | b9691ddce65f86387ca35a070981c3ac710541bb (patch) | |
tree | 1eeac6748d1d60f31cd6c37584816531ac1d1531 /meta-oe/recipes-devtools | |
parent | 67146de39c20754269f5a3d5db9916dff7e868fb (diff) | |
download | meta-openembedded-b9691ddce65f86387ca35a070981c3ac710541bb.tar.gz |
msr-tools: Explicitly set EXTRA_OEMAKE as required
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.
Without this it fails with:
msr-tools-1.3-r0 do_package_qa: QA Issue: Architecture did not match (3 to 62)
because it will build for host architecture
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools')
-rw-r--r-- | meta-oe/recipes-devtools/msr-tools/msr-tools_1.3.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/msr-tools/msr-tools_1.3.bb b/meta-oe/recipes-devtools/msr-tools/msr-tools_1.3.bb index caebcb9ea..e4701afa8 100644 --- a/meta-oe/recipes-devtools/msr-tools/msr-tools_1.3.bb +++ b/meta-oe/recipes-devtools/msr-tools/msr-tools_1.3.bb | |||
@@ -12,6 +12,8 @@ S = "${WORKDIR}/msr-tools-master" | |||
12 | 12 | ||
13 | COMPATIBLE_HOST = '(i.86|x86_64).*-linux' | 13 | COMPATIBLE_HOST = '(i.86|x86_64).*-linux' |
14 | 14 | ||
15 | EXTRA_OEMAKE = "-e MAKEFLAGS=" | ||
16 | |||
15 | do_install() { | 17 | do_install() { |
16 | install -d ${D}${sbindir} | 18 | install -d ${D}${sbindir} |
17 | install -m 0755 rdmsr ${D}${sbindir} | 19 | install -m 0755 rdmsr ${D}${sbindir} |