Re: [yocto] examples of erroneous use of FILESEXTRAPATHS:append in various layers
"Robert P. J. Day" <[email protected]>
| Newsgroups | org.yoctoproject.lists.yocto |
|---|---|
| Message-ID | <[email protected]> |
On Mon, 27 Oct 2025, Ross Burton wrote: > On 26 Oct 2025, at 11:55, Robert P. J. Day via lists.yoctoproject.org <[email protected]> wrote: > > > > > > i ran across a single example of this, so i ran a simple search to > > find other examples in the layers i have checked out -- looking for > > examples of "FILESEXTRAPATHS:append" operator where the colon is on > > the wrong end of the string (appropriate for prepending): > > > > $ grep -r 'FILESEXTRAPATHS:append := "\$' * > > meta-arm/meta-arm-bsp/dynamic-layers/meta-arm-systemready/recipes-test/arm-systemready-acs/arm-systemready-ir-acs-fvp-base.inc:FILESEXTRAPATHS:append > > := "${THISDIR}/files/${MACHINE}:" > > Fix posted for meta-arm, thanks. no problem. reminder that here are the other fundamental layer examples of the same issue: $ grep -r 'FILESEXTRAPATHS:append := "\$' * meta-freescale/recipes-graphics/imx-gpu-viv/imx-gpu-viv-6.inc:FILESEXTRAPATHS:append := "${THISDIR}/imx-gpu-viv:" meta-security/meta-integrity/recipes-security/ima-evm-utils/ima-evm-utils_1.5.bb:FILESEXTRAPATHS:append := "${THISDIR}/${PN}:" meta-virtualization/recipes-networking/openvswitch/openvswitch_git.bb:FILESEXTRAPATHS:append := "${THISDIR}/${PN}-git:" rday