diff mbox series

[meta-networking,v2] openl2tp: Fix do_package_qa Issue

Message ID 20260127021845.5464-1-liuyd.fnst@fujitsu.com
State Under Review
Headers show
Series [meta-networking,v2] openl2tp: Fix do_package_qa Issue | expand

Commit Message

Liu Yiding Jan. 27, 2026, 2:18 a.m. UTC
Fix following issue when using customized kernel without kernel-module-l2tp-ppp enabled.
ERROR: openl2tp-1.8-r0 do_package_qa: QA Issue: openl2tp-ptest rdepends on kernel-module-l2tp-ppp, but it isn't a build dependency? [build-deps]

Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com>
---
 meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb b/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb
index 4e5b45891d..1d11d374fc 100644
--- a/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb
+++ b/meta-networking/recipes-protocols/openl2tp/openl2tp_1.8.bb
@@ -96,4 +96,5 @@  do_install_ptest () {
 }
 
 RDEPENDS:${PN} = "ppp ppp-l2tp bash"
-RDEPENDS:${PN}-ptest += "rpcbind kernel-module-l2tp-ppp procps-ps tcl"
+RDEPENDS:${PN}-ptest += "rpcbind procps-ps tcl"
+RRECOMMENDS:${PN}-ptest = "kernel-module-l2tp-ppp"