Re: [yocto-patches] [meta-security][PATCH] isic: fix RDEPNEDS typo
Scott Murray <[email protected]>
| Newsgroups | org.yoctoproject.lists.yocto-patches |
|---|---|
| Message-ID | <[email protected]> |
On Tue, 14 Apr 2026, haiqing via lists.yoctoproject.org wrote: > From: Haiqing Bai <[email protected]> > > Fix typo: RDEPNEDS -> RDEPENDS > > Signed-off-by: Haiqing Bai <[email protected]> > --- > recipes-security/isic/isic_0.07.bb | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/recipes-security/isic/isic_0.07.bb b/recipes-security/isic/isic_0.07.bb > index 8e0f5ce..ac637b8 100644 > --- a/recipes-security/isic/isic_0.07.bb > +++ b/recipes-security/isic/isic_0.07.bb > @@ -31,4 +31,4 @@ do_configure () { > oe_runconf > } > > -RDEPNEDS += "libnet" > +RDEPENDS += "libnet" Note that this not is correct syntax, and results in a parse error; it should be RDEPENDS:${PN}. I have fixed it locally in my patch test queue, but in future please at least do a test build of a recipe before submitting changes. Scott