From: Mike Crowe Date: Tue, 2 Feb 2016 14:49:47 +0000 (+0000) Subject: bitbake.conf: Remove unhelpful default value for EXTRA_OEMAKE X-Git-Tag: 2016-4~869 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=aeb653861a0ec39ea7a014c0622980edcbf653fa;p=openembedded-core.git 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 = "". Signed-off-by: Mike Crowe Signed-off-by: Richard Purdie --- 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" export BUILD_NM = "${BUILD_PREFIX}nm" export MAKE = "make" -EXTRA_OEMAKE = "-e MAKEFLAGS=" +EXTRA_OEMAKE = "" EXTRA_OECONF = "" export LC_ALL = "C"