diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-02-05 16:55:47 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-08 14:50:35 +0000 |
commit | 81117fd2fa49b0ddf06db61b617d5c065c3e3c65 (patch) | |
tree | 76ddeb09476a014e16d3bfc8248705aa3f6f557c /meta | |
parent | 2e5b6a6b2f1a6050657b3a1e5f9728aa9f736f29 (diff) | |
download | poky-81117fd2fa49b0ddf06db61b617d5c065c3e3c65.tar.gz |
base.bbclass: remove redundant setting of MAKE
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.
(From OE-Core rev: b9c83b22b555349314191ba60346b01a9252a812)
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/base.bbclass | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 3ad3842fad..1c284b750c 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -54,7 +54,6 @@ die() { | |||
54 | } | 54 | } |
55 | 55 | ||
56 | oe_runmake() { | 56 | oe_runmake() { |
57 | if [ x"$MAKE" = x ]; then MAKE=make; fi | ||
58 | bbnote ${MAKE} ${EXTRA_OEMAKE} "$@" | 57 | bbnote ${MAKE} ${EXTRA_OEMAKE} "$@" |
59 | ${MAKE} ${EXTRA_OEMAKE} "$@" || die "oe_runmake failed" | 58 | ${MAKE} ${EXTRA_OEMAKE} "$@" || die "oe_runmake failed" |
60 | } | 59 | } |