diff options
author | Changqing Li <changqing.li@windriver.com> | 2025-10-10 18:31:06 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-10-10 09:46:48 -0700 |
commit | c5d239faa6224f581c6570ff9c06e34f21ddc58d (patch) | |
tree | 1ced03a3820e1cc56b3e4cb895a7e3d5deb4a1cf | |
parent | b9471f4967c3d8ca828907c2fa41ea86b57efb97 (diff) | |
download | meta-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>
-rw-r--r-- | meta-oe/recipes-multimedia/cdrkit/cdrkit_1.1.11.bb | 4 |
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 | |||
24 | inherit cmake | 24 | inherit cmake |
25 | 25 | ||
26 | DEPENDS = "libcap file bzip2" | 26 | DEPENDS = "libcap file bzip2" |
27 | RDEPENDS:dirsplit = "perl" | ||
28 | 27 | ||
28 | EXTRA_OECMAKE = "-DCMAKE_SKIP_BUILD_RPATH=ON" | ||
29 | |||
30 | RDEPENDS:dirsplit = "perl" | ||
29 | RDEPENDS:${PN}-dev = "" | 31 | RDEPENDS:${PN}-dev = "" |
30 | 32 | ||
31 | PACKAGES =+ "dirsplit genisoimage icedax wodim" | 33 | PACKAGES =+ "dirsplit genisoimage icedax wodim" |