From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail1.windriver.com (mail1.windriver.com [147.11.146.13]) by mail.openembedded.org (Postfix) with ESMTP id 962DF7023B for ; Tue, 15 Jul 2014 11:44:58 +0000 (UTC) Received: from ALA-HCA.corp.ad.wrs.com (ala-hca.corp.ad.wrs.com [147.11.189.40]) by mail1.windriver.com (8.14.5/8.14.5) with ESMTP id s6FBiq6A011480 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=FAIL); Tue, 15 Jul 2014 04:44:52 -0700 (PDT) Received: from [128.224.162.194] (128.224.162.194) by ALA-HCA.corp.ad.wrs.com (147.11.189.40) with Microsoft SMTP Server id 14.3.169.1; Tue, 15 Jul 2014 04:44:52 -0700 Message-ID: <53C5142C.3040304@windriver.com> Date: Tue, 15 Jul 2014 19:44:44 +0800 From: Hongxu Jia User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.2.0 MIME-Version: 1.0 To: Richard Purdie References: <9941caf92c8d49ddd3cdea016fa8ec6263875185.1404885647.git.hongxu.jia@windriver.com> <53BF41A9.4010706@windriver.com> <1405421856.20402.3.camel@ted> In-Reply-To: <1405421856.20402.3.camel@ted> Cc: OE-core , Saul Wold Subject: Re: [PATCH 4/8] xmlto: add version 0.0.25 X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.12 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 15 Jul 2014 11:44:59 -0000 Content-Type: text/plain; charset="UTF-8"; format=flowed Content-Transfer-Encoding: 7bit On 07/15/2014 06:57 PM, Richard Purdie wrote: > On Fri, 2014-07-11 at 09:45 +0800, Hongxu Jia wrote: >> On 07/11/2014 04:57 AM, Burton, Ross wrote: >> >>> On 9 July 2014 11:16, Hongxu Jia wrote: >>>> +# To make sure these native packages ready before xmlto-native was invoked. >>>> +DEPENDS_class-native = " \ >>>> + docbook-xml-dtd4-native \ >>>> + docbook-xsl-stylesheets-native \ >>>> + util-linux-native \ >>>> + libxml2-native \ >>>> + libxslt-native \ >>>> +" >>> Does this do what you want if xmlto-native is pulled in from sstate in >>> an empty tmp? >> Hi Ross, >> >> If we don't have it, while runing bitbake world, there was a build >> failure for alsa-utils which xmlto enabled. >> ... >> | xmlto man alsactl_init.xml >> | sed -e 's,@localstatedir\@,/var,g' -e 's,@sbindir\@,/usr/sbin,g' -e 's,@daemonswitch\@,/etc/alsa/state-daemon.conf,g' < 90-alsa-restore.rules.in > 90-alsa-restore.rules || rm 90-alsa-restore.rules >> | i586-poky-linux-gcc -m32 -march=i586 --sysroot=/buildarea3/yocto-autobuilder/yocto-slave/nightly-x86/build/build/tmp/sysroots/qemux86 -D__USE_GNU -DSYS_ASOUNDRC=\"/var/lib/alsa/asound.state\" -DSYS_PIDFILE=\"/var/run/alsactl.pid\" -O2 -pipe -g -feliminate-unused-debug-types -Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed -o alsactl alsactl-alsactl.o alsactl-state.o alsactl-lock.o alsactl-utils.o alsactl-init_parse.o alsactl-daemon.o -lasound -lm -ldl -lpthread >> | xmlto: /buildarea3/yocto-autobuilder/yocto-slave/nightly-x86/build/build/tmp/work/i586-poky-linux/alsa-utils/1.0.27.2-r0/alsa-utils-1.0.27.2/alsactl/alsactl_init.xml does not validate (status 3) >> | xmlto: Fix document syntax or use --skip-validation option >> | I/O error : Attempt to load network entity http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd >> | /buildarea3/yocto-autobuilder/yocto-slave/nightly-x86/build/build/tmp/work/i586-poky-linux/alsa-utils/1.0.27.2-r0/alsa-utils-1.0.27.2/alsactl/alsactl_init.xml:3: warning: failed to load external entity "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" >> | "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"> >> | ^ >> | I/O error : Attempt to load network entity http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd >> | warning: failed to load external entity "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" >> | validity error : Could not load the external subset "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd" >> ... >> >> The alsa-utils invoked xmlto to generate document at his do_compile, >> so we have to make sure the above native packages prepared before >> xmlto-native. > Shouldn't alsa-utils have a dependency on the docbook pieces it needs as > well as xmlto-native then? > > Certainly, these are not build time dependencies of xmlto so something > is not quite right... Got it, I will add docbook pieces to alsa-utils's dependency, V3 Incoming. //Hongxu > Cheers, > > Richard >