| Message ID | 20260414092207.1915814-1-haiqing.bai@windriver.com |
|---|---|
| State | New |
| Headers | show |
| Series | [meta-security] isic: fix RDEPNEDS typo | expand |
On Tue, 14 Apr 2026, haiqing via lists.yoctoproject.org wrote: > From: Haiqing Bai <haiqing.bai@windriver.com> > > Fix typo: RDEPNEDS -> RDEPENDS > > Signed-off-by: Haiqing Bai <haiqing.bai@windriver.com> > --- > 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
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"