diff options
author | Mike Crowe <mac@mcrowe.com> | 2016-02-05 18:04:28 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-10 16:06:25 +0000 |
commit | 7932525a3439163d5f0a1e3d13f7fa1af5e76a2e (patch) | |
tree | 2e9ffbca67473e9b8f9b4fd3d5fe47bccb8f7c44 | |
parent | 4ef055c9ef5de66379edf948f954321eb65ff6e3 (diff) | |
download | openembedded-core-contrib-7932525a3439163d5f0a1e3d13f7fa1af5e76a2e.tar.gz |
unzip: Explicitly set EXTRA_OEMAKE as required
This recipe currently relies on EXTRA_OEMAKE having been set to
"-e MAKEFLAGS=" in bitbake.conf to operate. It is necessary to make this
explicit so that the default in bitbake.conf can be changed.
(From OE-Core rev: 9e38dc9b6b70b81d778c299f9a7fab30116c74fa)
Signed-off-by: Mike Crowe <mac@mcrowe.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/unzip/unzip_6.0.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/unzip/unzip_6.0.bb b/meta/recipes-extended/unzip/unzip_6.0.bb index 77057946233..9efe75628ac 100644 --- a/meta/recipes-extended/unzip/unzip_6.0.bb +++ b/meta/recipes-extended/unzip/unzip_6.0.bb @@ -30,7 +30,7 @@ S = "${WORKDIR}/unzip60" # Makefile and add CFLAGS. Optimization will be overriden by unzip # configure to be -O3. # -EXTRA_OEMAKE += "STRIP=true LF2='' \ +EXTRA_OEMAKE = "-e MAKEFLAGS= STRIP=true LF2='' \ 'CF_NOOPT=-I. -Ibzip2 -DUNIX ${CFLAGS}'" export LD = "${CC}" |