summaryrefslogtreecommitdiffstats
path: root/meta-oe
diff options
context:
space:
mode:
authorChangqing Li <changqing.li@windriver.com>2025-10-10 18:31:06 +0800
committerKhem Raj <raj.khem@gmail.com>2025-10-10 09:46:48 -0700
commitc5d239faa6224f581c6570ff9c06e34f21ddc58d (patch)
tree1ced03a3820e1cc56b3e4cb895a7e3d5deb4a1cf /meta-oe
parentb9471f4967c3d8ca828907c2fa41ea86b57efb97 (diff)
downloadmeta-openembedded-c5d239faa6224f581c6570ff9c06e34f21ddc58d.tar.gz
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 <changqing.li@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
-rw-r--r--meta-oe/recipes-multimedia/cdrkit/cdrkit_1.1.11.bb4
1 files changed, 3 insertions, 1 deletions
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
24inherit cmake 24inherit cmake
25 25
26DEPENDS = "libcap file bzip2" 26DEPENDS = "libcap file bzip2"
27RDEPENDS:dirsplit = "perl"
28 27
28EXTRA_OECMAKE = "-DCMAKE_SKIP_BUILD_RPATH=ON"
29
30RDEPENDS:dirsplit = "perl"
29RDEPENDS:${PN}-dev = "" 31RDEPENDS:${PN}-dev = ""
30 32
31PACKAGES =+ "dirsplit genisoimage icedax wodim" 33PACKAGES =+ "dirsplit genisoimage icedax wodim"