diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2016-02-25 14:55:28 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-02-25 17:47:30 +0100 |
commit | 27bb27f8780896663eeaa502456aefa3828a030c (patch) | |
tree | 52979dbd1fcf3c68056170b45e4ee1ef8c09332e | |
parent | a0ac4361af7343ce4587de1e7c3d8d97b40265c8 (diff) | |
download | meta-openembedded-27bb27f8780896663eeaa502456aefa3828a030c.tar.gz |
zsh: Explicitly set EXTRA_OEMAKE as required
* This recipe currently relies on EXTRA_OEMAKE having been to 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.
* Unfortunately the build doesn't fail, it just produces almost empty
output and QA warning is shown:
WARNING: zsh-5.0.5-r0 do_package: QA Issue: zsh: Files/directories
were installed but not shipped in any package:
/usr
Please set FILES such that these items are packaged. Alternatively if
they are unneeded, avoid installing them or delete them within
do_install.
zsh: 1 installed and not shipped files. [installed-vs-shipped]
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
-rw-r--r-- | meta-oe/recipes-extended/zsh/zsh_5.0.5.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/zsh/zsh_5.0.5.bb b/meta-oe/recipes-extended/zsh/zsh_5.0.5.bb index 658f3d998..39b2d95a6 100644 --- a/meta-oe/recipes-extended/zsh/zsh_5.0.5.bb +++ b/meta-oe/recipes-extended/zsh/zsh_5.0.5.bb | |||
@@ -30,6 +30,8 @@ EXTRA_OECONF = " \ | |||
30 | zsh_cv_shared_environ=yes \ | 30 | zsh_cv_shared_environ=yes \ |
31 | " | 31 | " |
32 | 32 | ||
33 | EXTRA_OEMAKE = "-e MAKEFLAGS=" | ||
34 | |||
33 | ALTERNATIVE_${PN} = "sh" | 35 | ALTERNATIVE_${PN} = "sh" |
34 | ALTERNATIVE_LINK_NAME[sh] = "${base_bindir}/sh" | 36 | ALTERNATIVE_LINK_NAME[sh] = "${base_bindir}/sh" |
35 | ALTERNATIVE_TARGET[sh] = "${base_bindir}/${BPN}" | 37 | ALTERNATIVE_TARGET[sh] = "${base_bindir}/${BPN}" |