diff options
author | Mike Crowe <mac@mcrowe.com> | 2016-02-05 18:04:20 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-10 15:51:04 +0000 |
commit | 3403f54f4f07033de251b638a041de9c2c539fbd (patch) | |
tree | ef5a488e8a3ddfcba433ce0e574d44be3751739a /meta/recipes-bsp/libacpi | |
parent | a4fba54972c2b093bc6eae0f153fd2ba418b6b60 (diff) | |
download | openembedded-core-contrib-3403f54f4f07033de251b638a041de9c2c539fbd.tar.gz |
libacpi: Explicitly set EXTRA_OEMAKE as required
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>
Diffstat (limited to 'meta/recipes-bsp/libacpi')
-rw-r--r-- | meta/recipes-bsp/libacpi/libacpi_0.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-bsp/libacpi/libacpi_0.2.bb b/meta/recipes-bsp/libacpi/libacpi_0.2.bb index 3dd9ab640e6..6dc66ea25f0 100644 --- a/meta/recipes-bsp/libacpi/libacpi_0.2.bb +++ b/meta/recipes-bsp/libacpi/libacpi_0.2.bb @@ -23,7 +23,7 @@ inherit lib_package COMPATIBLE_HOST = '(x86_64|i.86).*-(linux|freebsd.*)' CFLAGS += "-fPIC" -EXTRA_OEMAKE += 'STRIP="echo"' +EXTRA_OEMAKE = '-e MAKEFLAGS= STRIP="echo"' TARGET_CC_ARCH += "${LDFLAGS}" |