summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGyorgy Sarvari <skandigraun@gmail.com>2026-02-12 23:35:36 +0100
committerKhem Raj <raj.khem@gmail.com>2026-02-16 00:34:02 -0800
commit1de433f8bb9256b9966d886f07be517567408a86 (patch)
tree754f68fc8851ae937a1a3a77fdb44771b15ca96a
parent0332dae9bb2ff79e4a4faa45c42d96e0dccee4db (diff)
downloadmeta-openembedded-1de433f8bb9256b9966d886f07be517567408a86.tar.gz
valkey: remove TMPDIR truncation in binaries
These seds were added to remove reproducibility QA errors about TMPDIR being present in the binaries. The root of the problem was changed LDFLAGS in oe-core, and after adding back these LDFLAGS to this recipe[1], the QA error is also gone - the binaries require no changes due to this. Also remove the INSANE_SKIP, which was most likely fixed by the same LDFLAGS issue - it doesn't happen anymore. [1]: https://git.openembedded.org/meta-openembedded/commit/?id=e8981bf43163d2fe90ea28b2952a2443ceaea934 Signed-off-by: Gyorgy Sarvari <skandigraun@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-extended/valkey/valkey_9.0.2.bb7
1 files changed, 0 insertions, 7 deletions
diff --git a/meta-oe/recipes-extended/valkey/valkey_9.0.2.bb b/meta-oe/recipes-extended/valkey/valkey_9.0.2.bb
index 7b4226d2af..419efab17c 100644
--- a/meta-oe/recipes-extended/valkey/valkey_9.0.2.bb
+++ b/meta-oe/recipes-extended/valkey/valkey_9.0.2.bb
@@ -46,11 +46,6 @@ do_compile() {
46} 46}
47 47
48do_install() { 48do_install() {
49 # Remove debug paths to avoid TMPDIR [buildpaths] errors
50 sed -i -e 's#${TMPDIR}##g' ${S}/src/valkey-benchmark
51 sed -i -e 's#${TMPDIR}##g' ${S}/src/valkey-server
52 sed -i -e 's#${TMPDIR}##g' ${S}/src/valkey-cli
53
54 export PREFIX=${D}/${prefix} 49 export PREFIX=${D}/${prefix}
55 oe_runmake install 50 oe_runmake install
56 install -d ${D}/${sysconfdir}/valkey 51 install -d ${D}/${sysconfdir}/valkey
@@ -79,5 +74,3 @@ INITSCRIPT_PARAMS = "defaults 87"
79SYSTEMD_SERVICE:${PN} = "valkey.service" 74SYSTEMD_SERVICE:${PN} = "valkey.service"
80 75
81CVE_STATUS[CVE-2022-3734] = "not-applicable-platform: CVE only applies for Windows." 76CVE_STATUS[CVE-2022-3734] = "not-applicable-platform: CVE only applies for Windows."
82
83INSANE_SKIP:${PN} = "already-stripped"