diff options
author | Ross Burton <ross.burton@intel.com> | 2016-03-08 11:27:35 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-09 16:58:13 +0000 |
commit | 9ac029bd4a5c2b08dfef28c7a20ae1a460b0bfe1 (patch) | |
tree | 3b28936f0761eb464d29745f4301b0383737f629 /meta/recipes-devtools/xmlto/xmlto_0.0.28.bb | |
parent | 6d89b5201b1db5ea527e1253c26e1592e3c5077f (diff) | |
download | poky-9ac029bd4a5c2b08dfef28c7a20ae1a460b0bfe1.tar.gz |
xmlto: tell xmlto where cp is
xmlto looks for a cp binary, and on e.g. Fedora 23 will find it at /usr/bin/cp
but most other distros have it at /bin/cp. This causing problems with sharing
sstate between distributions, but as /bin is a symlink on F23 we can safely
force the path to /bin/cp.
(From OE-Core rev: 46baed0fc22ab33c6481ec1cb1697f85593b4794)
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/xmlto_0.0.28.bb')
-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 54438ef01e..71f873f9ee 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 = " BASH=/bin/bash XMLLINT=xmllint XSLTPROC=xsltproc" | 30 | EXTRA_OECONF_append = " BASH=/bin/bash GCP=/bin/cp 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/ |