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-07 00:11:39 +0000 |
commit | ce5a9df3c46cdaee3f414c56ac982d25f6f00f53 (patch) | |
tree | 79036fb572cb85ec3d3d4588cb450f43cc93f0b6 /meta/recipes-devtools/xmlto | |
parent | 70b4f36fc241679923808f231cf50fa0e2479399 (diff) | |
download | poky-ce5a9df3c46cdaee3f414c56ac982d25f6f00f53.tar.gz |
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.
(From OE-Core rev: e89cd308792f613e5b4765dc0f7f21569aaaab6f)
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 = " \ | |||
27 | 27 | ||
28 | BBCLASSEXTEND = "native" | 28 | BBCLASSEXTEND = "native" |
29 | 29 | ||
30 | EXTRA_OECONF_append = " XMLLINT=xmllint XSLTPROC=xsltproc" | 30 | EXTRA_OECONF_append = " BASH=/bin/bash XMLLINT=xmllint XSLTPROC=xsltproc" |
31 | 31 | ||
32 | do_install_append() { | 32 | do_install_append() { |
33 | install -d ${D}${sysconfdir}/xml/ | 33 | install -d ${D}${sysconfdir}/xml/ |