diff options
author | Mike Crowe <mac@mcrowe.com> | 2016-02-02 14:49:47 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-15 16:28:46 +0000 |
commit | f8520142c8a33fa9414314511fb01fbe79a2bf01 (patch) | |
tree | 86684eb8113a2d887a925e9f735c4846a8762957 /meta/conf | |
parent | b050c50f04968ab3311a06a602942fa24f2a93f3 (diff) | |
download | poky-f8520142c8a33fa9414314511fb01fbe79a2bf01.tar.gz |
bitbake.conf: Remove unhelpful default value for EXTRA_OEMAKE
Setting EXTRA_OEMAKE to "-e MAKEFLAGS=" by default is a historical
accident and many classes (e.g. autotools.bbclass, module.bbclass) and
recipes have to override this default in order to work with sensible
build systems.
Now that openssl and pciutils have been fixed to set EXTRA_OEMAKE
explicitly it is possible to set EXTRA_OEMAKE = "".
(From OE-Core rev: aeb653861a0ec39ea7a014c0622980edcbf653fa)
Signed-off-by: Mike Crowe <mac@mcrowe.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index bdbd3c8c34..a75bb8b7d4 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -475,7 +475,7 @@ export BUILD_STRIP = "${BUILD_PREFIX}strip" | |||
475 | export BUILD_NM = "${BUILD_PREFIX}nm" | 475 | export BUILD_NM = "${BUILD_PREFIX}nm" |
476 | 476 | ||
477 | export MAKE = "make" | 477 | export MAKE = "make" |
478 | EXTRA_OEMAKE = "-e MAKEFLAGS=" | 478 | EXTRA_OEMAKE = "" |
479 | EXTRA_OECONF = "" | 479 | EXTRA_OECONF = "" |
480 | export LC_ALL = "C" | 480 | export LC_ALL = "C" |
481 | 481 | ||