Re: [yocto] Remove a recipe's do_install_append() function in an append file

2017-03-28 Thread Khem Raj
On 3/28/17 11:19 AM, Lennart Sorensen wrote: > On Tue, Mar 28, 2017 at 10:27:15AM -0700, Khem Raj wrote: >> On Thu, Mar 23, 2017 at 3:28 PM, Cody Piersall wrote: >>> Hello, >>> >>> I am building zsh from meta-oe layer, and it has a do_install_append() >>> function defined like

Re: [yocto] Remove a recipe's do_install_append() function in an append file

2017-03-28 Thread Lennart Sorensen
On Tue, Mar 28, 2017 at 10:27:15AM -0700, Khem Raj wrote: > On Thu, Mar 23, 2017 at 3:28 PM, Cody Piersall wrote: > > Hello, > > > > I am building zsh from meta-oe layer, and it has a do_install_append() > > function defined like this: > > > > do_install_append () { > > rm

Re: [yocto] Remove a recipe's do_install_append() function in an append file

2017-03-28 Thread Khem Raj
On Thu, Mar 23, 2017 at 3:28 PM, Cody Piersall wrote: > Hello, > > I am building zsh from meta-oe layer, and it has a do_install_append() > function defined like this: > > do_install_append () { > rm -fr ${D}/usr/share > } > > which gets rid of lots lots of useful

Re: [yocto] Remove a recipe's do_install_append() function in an append file

2017-03-28 Thread Matthew McClintock
On Thu, Mar 23, 2017 at 5:28 PM, Cody Piersall wrote: > Hello, > > I am building zsh from meta-oe layer, and it has a do_install_append() > function defined like this: > > do_install_append () { > rm -fr ${D}/usr/share > } > > which gets rid of lots lots of useful

[yocto] Remove a recipe's do_install_append() function in an append file

2017-03-28 Thread Cody Piersall
Hello, I am building zsh from meta-oe layer, and it has a do_install_append() function defined like this: do_install_append () { rm -fr ${D}/usr/share } which gets rid of lots lots of useful functionality, like context-aware autocompletion. Can a bbappend file get rid of that function, or

Re: [yocto] Remove a recipe's do_install_append() function in an append file

2017-03-24 Thread Cody Piersall
On Fri, Mar 24, 2017 at 8:53 AM, Robert P. J. Day wrote: > On Fri, 24 Mar 2017, Cody Piersall wrote: >> I am building zsh from meta-oe layer, and it has a do_install_append() >> function defined like this: >> >> do_install_append () { >> rm -fr ${D}/usr/share >> } >> >>

Re: [yocto] Remove a recipe's do_install_append() function in an append file

2017-03-24 Thread Burton, Ross
On 24 March 2017 at 13:49, Cody Piersall wrote: > I am building zsh from meta-oe layer, and it has a do_install_append() > function defined like this: > > do_install_append () { > rm -fr ${D}/usr/share > } > > which gets rid of lots lots of useful functionality, like >

Re: [yocto] Remove a recipe's do_install_append() function in an append file

2017-03-24 Thread Alexander Kanavin
On 03/24/2017 03:53 PM, Robert P. J. Day wrote: On Fri, 24 Mar 2017, Cody Piersall wrote: do_install_append () { rm -fr ${D}/usr/share } which gets rid of lots lots of useful functionality, like context-aware autocompletion. Can a bbappend file get rid of that function, or do I need to

Re: [yocto] Remove a recipe's do_install_append() function in an append file

2017-03-24 Thread Robert P. J. Day
On Fri, 24 Mar 2017, Cody Piersall wrote: > Hello, > > I am building zsh from meta-oe layer, and it has a do_install_append() > function defined like this: > > do_install_append () { > rm -fr ${D}/usr/share > } > > which gets rid of lots lots of useful functionality, like > context-aware

[yocto] Remove a recipe's do_install_append() function in an append file

2017-03-24 Thread Cody Piersall
Hello, I am building zsh from meta-oe layer, and it has a do_install_append() function defined like this: do_install_append () { rm -fr ${D}/usr/share } which gets rid of lots lots of useful functionality, like context-aware autocompletion. Can a bbappend file get rid of that function, or