]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake.conf: Remove unhelpful default value for EXTRA_OEMAKE
authorMike Crowe <mac@mcrowe.com>
Tue, 2 Feb 2016 14:49:47 +0000 (14:49 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 15 Feb 2016 16:28:25 +0000 (16:28 +0000)
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 = "".

Signed-off-by: Mike Crowe <mac@mcrowe.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/conf/bitbake.conf

index bdbd3c8c3495cfb36094a59852d7a634059115de..a75bb8b7d4c8405f35d822ca2588d331a12e3eef 100644 (file)
@@ -475,7 +475,7 @@ export BUILD_STRIP = "${BUILD_PREFIX}strip"
 export BUILD_NM = "${BUILD_PREFIX}nm"
 
 export MAKE = "make"
-EXTRA_OEMAKE = "-e MAKEFLAGS="
+EXTRA_OEMAKE = ""
 EXTRA_OECONF = ""
 export LC_ALL = "C"