Re: [yocto] Force recipe to provide specific file

2014-08-27 Thread Richard Leitner
On Fri, 22 Aug 2014 11:07:41 +0200 Anders Darander wrote: > > > What happens for example if do_install_append is already defined in the > > recipe? > > > No issue at all. The do_install_append's will just be appended one after > each other. Thanks you for this info! Maybe it would be a goo

Re: [yocto] Force recipe to provide specific file

2014-08-22 Thread Anders Darander
* Richard Leitner [140812 15:53]: > > but anyways, a simpler way to so the same thing would be do have a > > do_install_append() function and remove the files from ${D}. that > > would in turns have the same effect as what you are trying to do here > > i believe. > Yeah, this works, this is the w

Re: [yocto] Force recipe to provide specific file

2014-08-12 Thread Stath, Paul
> > why not just provide a .bbappend file and an overriding file? > > Do you mean that I should integrate my version of the files into the > ghostscript package? > This is what I want to avoid because all cups-filters should reside in the > cups-filters package. > It is not necessarily true th

Re: [yocto] Force recipe to provide specific file

2014-08-12 Thread Richard Leitner
Hi, On Tue, 12 Aug 2014 15:04:46 +0200 Nicolas Dechesne wrote: > On Tue, Aug 12, 2014 at 2:58 PM, Richard Leitner > wrote: > > > > I've also tried the following in my ghostscript bbappend, but it does not > > work. Shouldn't [1] work this way? > > > > FILES_${PN}-cups_remove = "${exec_prefix}/l

Re: [yocto] Force recipe to provide specific file

2014-08-12 Thread Nicolas Dechesne
On Tue, Aug 12, 2014 at 2:58 PM, Richard Leitner wrote: > > I've also tried the following in my ghostscript bbappend, but it does not > work. Shouldn't [1] work this way? > > FILES_${PN}-cups_remove = "${exec_prefix}/lib/cups/filter/gstopxl" > FILES_${PN}-cups_remove = "${exec_prefix}/lib/cups/fil

Re: [yocto] Force recipe to provide specific file

2014-08-12 Thread Richard Leitner
Hi, thanks for your answer! On Tue, 12 Aug 2014 08:27:46 -0400 "Robert P. J. Day" wrote: > On Tue, 12 Aug 2014, Richard Leitner wrote: > > > > > WARNING: The recipe ghostscript is trying to install files into a shared > > area > > when those files already exist. Those files and their manifest

Re: [yocto] Force recipe to provide specific file

2014-08-12 Thread Robert P. J. Day
On Tue, 12 Aug 2014, Richard Leitner wrote: > Hello folks, > is there a possibility to force a recipe to provide a specific file? > > My problem is that my own recipe is providing a file which is already provided > by another recipe. I don't want to change that other recipe and the rootfs > should

[yocto] Force recipe to provide specific file

2014-08-12 Thread Richard Leitner
Hello folks, is there a possibility to force a recipe to provide a specific file? My problem is that my own recipe is providing a file which is already provided by another recipe. I don't want to change that other recipe and the rootfs should include both package but only the specified file from m