* [PATCH] xmlto: adds libxslt to DEPENDS
@ 2016-08-09 7:53 Ming Liu
2016-08-09 7:58 ` Robert Yang
0 siblings, 1 reply; 3+ messages in thread
From: Ming Liu @ 2016-08-09 7:53 UTC (permalink / raw)
To: openembedded-core; +Cc: yue.tao, Ming Liu
From: Ming Liu <peter.x.liu@external.atlascopco.com>
The native libxslt-bin is needed by xmlto-native, but it's not in either
DEPENDS or RDEPENDS of native xmlto.
This fixes a following error per test:
| xmlto: Can't continue, xsltproc tool not found or not executable.
| make[2]: *** [/mnt/OE/build/tmp-glibc/work/qemux86-oe-linux/perf/1.0-r9/perf-1.0/perf-annotate.1] Error 3
| make[2]: *** Waiting for unfinished jobs....
Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
---
meta/recipes-devtools/xmlto/xmlto_0.0.28.bb | 3 +++
1 file changed, 3 insertions(+)
diff --git a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
index 886e7b4..cc4bccd 100644
--- a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
+++ b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
@@ -14,6 +14,9 @@ SRC_URI[sha256sum] = "2f986b7c9a0e9ac6728147668e776d405465284e13c74d4146c9cbc51f
inherit autotools
+# xmlto-native needs libxslt-native
+DEPENDS = "libxslt"
+
# xmlto needs getopt/xmllint/xsltproc/bash/tail at runtime
RDEPENDS_${PN} = "docbook-xml-dtd4 \
docbook-xsl-stylesheets \
--
1.9.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] xmlto: adds libxslt to DEPENDS
2016-08-09 7:53 [PATCH] xmlto: adds libxslt to DEPENDS Ming Liu
@ 2016-08-09 7:58 ` Robert Yang
2016-08-09 8:33 ` Liu Ming
0 siblings, 1 reply; 3+ messages in thread
From: Robert Yang @ 2016-08-09 7:58 UTC (permalink / raw)
To: Ming Liu, openembedded-core; +Cc: yue.tao, Ming Liu
Hi Ming,
I sent a similar patch yesterday:
[OE-core] [PATCH 0/1] xmlto: fix depends for native
http://cgit.openembedded.org/openembedded-core-contrib/commit/?h=rbt/xml&id=0b7f903f8c74204bb48cc74ce1a6957534ac9ede
// Robert
On 08/09/2016 03:53 PM, Ming Liu wrote:
> From: Ming Liu <peter.x.liu@external.atlascopco.com>
>
> The native libxslt-bin is needed by xmlto-native, but it's not in either
> DEPENDS or RDEPENDS of native xmlto.
>
> This fixes a following error per test:
> | xmlto: Can't continue, xsltproc tool not found or not executable.
> | make[2]: *** [/mnt/OE/build/tmp-glibc/work/qemux86-oe-linux/perf/1.0-r9/perf-1.0/perf-annotate.1] Error 3
> | make[2]: *** Waiting for unfinished jobs....
>
> Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
> ---
> meta/recipes-devtools/xmlto/xmlto_0.0.28.bb | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
> index 886e7b4..cc4bccd 100644
> --- a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
> +++ b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
> @@ -14,6 +14,9 @@ SRC_URI[sha256sum] = "2f986b7c9a0e9ac6728147668e776d405465284e13c74d4146c9cbc51f
>
> inherit autotools
>
> +# xmlto-native needs libxslt-native
> +DEPENDS = "libxslt"
> +
> # xmlto needs getopt/xmllint/xsltproc/bash/tail at runtime
> RDEPENDS_${PN} = "docbook-xml-dtd4 \
> docbook-xsl-stylesheets \
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] xmlto: adds libxslt to DEPENDS
2016-08-09 7:58 ` Robert Yang
@ 2016-08-09 8:33 ` Liu Ming
0 siblings, 0 replies; 3+ messages in thread
From: Liu Ming @ 2016-08-09 8:33 UTC (permalink / raw)
To: Robert Yang; +Cc: yue.tao, Ming Liu, openembedded-core
> 在 2016年8月9日,上午9:58,Robert Yang <liezhi.yang@windriver.com> 写道:
>
> Hi Ming,
>
> I sent a similar patch yesterday:
>
> [OE-core] [PATCH 0/1] xmlto: fix depends for native
>
> http://cgit.openembedded.org/openembedded-core-contrib/commit/?h=rbt/xml&id=0b7f903f8c74204bb48cc74ce1a6957534ac9ede
Arha, sorry, I have not checked OE mails(for a long time), so we can ignore my commit.
//Ming Liu
>
> // Robert
>
>> On 08/09/2016 03:53 PM, Ming Liu wrote:
>> From: Ming Liu <peter.x.liu@external.atlascopco.com>
>>
>> The native libxslt-bin is needed by xmlto-native, but it's not in either
>> DEPENDS or RDEPENDS of native xmlto.
>>
>> This fixes a following error per test:
>> | xmlto: Can't continue, xsltproc tool not found or not executable.
>> | make[2]: *** [/mnt/OE/build/tmp-glibc/work/qemux86-oe-linux/perf/1.0-r9/perf-1.0/perf-annotate.1] Error 3
>> | make[2]: *** Waiting for unfinished jobs....
>>
>> Signed-off-by: Ming Liu <peter.x.liu@external.atlascopco.com>
>> ---
>> meta/recipes-devtools/xmlto/xmlto_0.0.28.bb | 3 +++
>> 1 file changed, 3 insertions(+)
>>
>> diff --git a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
>> index 886e7b4..cc4bccd 100644
>> --- a/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
>> +++ b/meta/recipes-devtools/xmlto/xmlto_0.0.28.bb
>> @@ -14,6 +14,9 @@ SRC_URI[sha256sum] = "2f986b7c9a0e9ac6728147668e776d405465284e13c74d4146c9cbc51f
>>
>> inherit autotools
>>
>> +# xmlto-native needs libxslt-native
>> +DEPENDS = "libxslt"
>> +
>> # xmlto needs getopt/xmllint/xsltproc/bash/tail at runtime
>> RDEPENDS_${PN} = "docbook-xml-dtd4 \
>> docbook-xsl-stylesheets \
>>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-08-09 8:33 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-09 7:53 [PATCH] xmlto: adds libxslt to DEPENDS Ming Liu
2016-08-09 7:58 ` Robert Yang
2016-08-09 8:33 ` Liu Ming
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.