diff options
author | Robert Yang <liezhi.yang@windriver.com> | 2016-07-17 20:05:52 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-07-20 10:28:51 +0100 |
commit | 61577c5e4c2f6c0ec0756af04f1cfb2bc7f76e3c (patch) | |
tree | 8468994e2b121e809b23c928ed1d5e1eda671e82 /meta/recipes-devtools/xmlto | |
parent | f74ddc6df4819cfdaab0df570b9b5c3d2a5db135 (diff) | |
download | poky-61577c5e4c2f6c0ec0756af04f1cfb2bc7f76e3c.tar.gz |
xmlto: only target requires coreutils
The coreutils added to RDEPENDS was for tail command which is everywhere
on the build host, so only add it to target. There was a side effect if
coreutils-native was build, when its commands install to sysroots, they
would be removed during rebuild, and cause other recipes fail to build:
/path/to/tmp/sysroots/x86_64-linux/usr/bin/mkdir -p lib/sys
make: /path/to/tmp/sysroots/x86_64-linux/usr/bin/mkdir: Command not found
(From OE-Core rev: 4a0e3ca3733e2b6f3f20065421dbb9da2058014c)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
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 14d10094c6..886e7b4b93 100644 --- a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb +++ b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb | |||
@@ -20,10 +20,10 @@ RDEPENDS_${PN} = "docbook-xml-dtd4 \ | |||
20 | util-linux \ | 20 | util-linux \ |
21 | libxml2 \ | 21 | libxml2 \ |
22 | bash \ | 22 | bash \ |
23 | coreutils \ | ||
24 | " | 23 | " |
25 | RDEPENDS_${PN}_append_class-target = " \ | 24 | RDEPENDS_${PN}_append_class-target = " \ |
26 | libxslt-bin \ | 25 | libxslt-bin \ |
26 | coreutils \ | ||
27 | " | 27 | " |
28 | CACHED_CONFIGUREVARS += "ac_cv_path_TAIL=${bindir}/tail" | 28 | CACHED_CONFIGUREVARS += "ac_cv_path_TAIL=${bindir}/tail" |
29 | 29 | ||