]> code.ossystems Code Review - openembedded-core.git/commitdiff
base.bbclass: remove redundant setting of MAKE
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Tue, 5 Feb 2013 15:55:47 +0000 (16:55 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 8 Feb 2013 14:46:02 +0000 (14:46 +0000)
oe_runmake() tried to set MAKE a second time, remove it since this is
(nowadays?) redundant WRT the normal export MAKE= in the generated
scripts.

Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
meta/classes/base.bbclass

index 3ad3842fadfef107f6123a8d3e4ca0caf484a71c..1c284b750c06acbf557abeaef208c9a6567a50f9 100644 (file)
@@ -54,7 +54,6 @@ die() {
 }
 
 oe_runmake() {
-       if [ x"$MAKE" = x ]; then MAKE=make; fi
        bbnote ${MAKE} ${EXTRA_OEMAKE} "$@"
        ${MAKE} ${EXTRA_OEMAKE} "$@" || die "oe_runmake failed"
 }