From c5d239faa6224f581c6570ff9c06e34f21ddc58d Mon Sep 17 00:00:00 2001 From: Changqing Li Date: Fri, 10 Oct 2025 18:31:06 +0800 Subject: [PATCH] cdrkit: fix reproducibility issue Normally CMake uses the build tree for the RPATH when building executables etc on systems that use RPATH. This will make the buildpath included in the binaries and not reproducible, so disable RPATHs. Signed-off-by: Changqing Li Signed-off-by: Khem Raj --- meta-oe/recipes-multimedia/cdrkit/cdrkit_1.1.11.bb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/meta-oe/recipes-multimedia/cdrkit/cdrkit_1.1.11.bb b/meta-oe/recipes-multimedia/cdrkit/cdrkit_1.1.11.bb index 16b15f745e..80b5cd527e 100644 --- a/meta-oe/recipes-multimedia/cdrkit/cdrkit_1.1.11.bb +++ b/meta-oe/recipes-multimedia/cdrkit/cdrkit_1.1.11.bb @@ -24,8 +24,10 @@ SRC_URI[sha256sum] = "d1c030756ecc182defee9fe885638c1785d35a2c2a297b4604c0e0dcc7 inherit cmake DEPENDS = "libcap file bzip2" -RDEPENDS:dirsplit = "perl" +EXTRA_OECMAKE = "-DCMAKE_SKIP_BUILD_RPATH=ON" + +RDEPENDS:dirsplit = "perl" RDEPENDS:${PN}-dev = "" PACKAGES =+ "dirsplit genisoimage icedax wodim"