]> code.ossystems Code Review - openembedded-core.git/commitdiff
dmidecode: Explicitly set EXTRA_OEMAKE as required
authorMike Crowe <mac@mcrowe.com>
Fri, 5 Feb 2016 18:04:21 +0000 (18:04 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 10 Feb 2016 15:51:04 +0000 (15:51 +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 <mac@mcrowe.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-devtools/dmidecode/dmidecode_3.0.bb

index 8e532ad62c5986180da7fc77e2ae2488b2d6a8c7..109a9d2ee88a4314320196231cd66a9d2d67309e 100644 (file)
@@ -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
 }