diff mbox series

[kirkstone,mickledore,master] mingw-libgnurx: dev package conflicts with libc6-dev

Message ID 20230926023700.406709-1-changqing.li@windriver.com
State New
Headers show
Series [kirkstone,mickledore,master] mingw-libgnurx: dev package conflicts with libc6-dev | expand

Commit Message

Changqing Li Sept. 26, 2023, 2:37 a.m. UTC
From: Changqing Li <changqing.li@windriver.com>

bitbake core-image-minimal, do_rootfs will fail with following configs:
SDKMACHINE = "x86_64-mingw32"
IMAGE_INSTALL:append = " mingw-libgnurx"
EXTRA_IMAGE_FEATURES = "dbg-pkgs dev-pkgs debug-tweaks"

libgnurx is the regex functionality from glibc 2.5 extracted into a
separate library, for Win32. So its dev package has conflict files with
libc6-dev.

Signed-off-by: Changqing Li <changqing.li@windriver.com>
---
 recipes-support/mingw-libgnurx/mingw-libgnurx_2.5.1.bb | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/recipes-support/mingw-libgnurx/mingw-libgnurx_2.5.1.bb b/recipes-support/mingw-libgnurx/mingw-libgnurx_2.5.1.bb
index 4547298..127cdcd 100644
--- a/recipes-support/mingw-libgnurx/mingw-libgnurx_2.5.1.bb
+++ b/recipes-support/mingw-libgnurx/mingw-libgnurx_2.5.1.bb
@@ -15,3 +15,5 @@  inherit autotools
 EXTRA_OECONF = ""
 
 BBCLASSEXTEND = "nativesdk"
+
+RCONFLICTS:${PN}-dev = "libc6-dev"