diff options
author | Ross Burton <ross.burton@intel.com> | 2016-03-05 00:12:03 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-06 23:52:57 +0000 |
commit | e89cd308792f613e5b4765dc0f7f21569aaaab6f (patch) | |
tree | 17df8d63fec00e0bfa4d188a969af68a2ac78cf7 /meta/recipes-devtools/xmlto | |
parent | 3d806d59a4c5e8ff35c7e7c5a3a6ef85e2b4b259 (diff) | |
download | openembedded-core-e89cd308792f613e5b4765dc0f7f21569aaaab6f.tar.gz openembedded-core-e89cd308792f613e5b4765dc0f7f21569aaaab6f.tar.bz2 openembedded-core-e89cd308792f613e5b4765dc0f7f21569aaaab6f.zip |
xmlto: ensure /bin/bash is used as bash
The xmlto script uses bashisms and checks at configure time to find a bash
binary. If the build host has /bin/sh as bash then this gets detected, which
causes problems in native builds if the sstate is then shared to a machine with
/bin/sh as dash.
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/xmlto')
-rw-r--r-- | meta/recipes-devtools/xmlto/xmlto_0.0.28.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb index 514f527ac7..54438ef01e 100644 --- a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb +++ b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb @@ -27,7 +27,7 @@ RDEPENDS_${PN}_append_class-target = " \ BBCLASSEXTEND = "native" -EXTRA_OECONF_append = " XMLLINT=xmllint XSLTPROC=xsltproc" +EXTRA_OECONF_append = " BASH=/bin/bash XMLLINT=xmllint XSLTPROC=xsltproc" do_install_append() { install -d ${D}${sysconfdir}/xml/ |