diff options
author | Khem Raj <raj.khem@gmail.com> | 2024-07-27 17:25:45 -0700 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2024-08-10 11:22:02 -0400 |
commit | 1d097c8c4fbb9e6b43f2565c9483e6576ae3d102 (patch) | |
tree | 8eade74af737bb3522b24529b55f2635687eead0 | |
parent | 76f14368a04b16e18246592f7933536da20b4fc4 (diff) | |
download | meta-openembedded-1d097c8c4fbb9e6b43f2565c9483e6576ae3d102.tar.gz |
log4cpp: Fix buildpaths QA error
Fixes
do_package_qa: QA Issue: File /usr/bin/log4cpp-config in package log4cpp contains reference to TMPDIR [buildpaths]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
(cherry picked from commit 78a69186be5db3f6995101e0f94a1d11e1155421)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/log4cpp/log4cpp_1.1.4.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/log4cpp/log4cpp_1.1.4.bb b/meta-oe/recipes-support/log4cpp/log4cpp_1.1.4.bb index 729857eb62..a8b9b9a019 100644 --- a/meta-oe/recipes-support/log4cpp/log4cpp_1.1.4.bb +++ b/meta-oe/recipes-support/log4cpp/log4cpp_1.1.4.bb | |||
@@ -20,3 +20,7 @@ EXTRA_OECONF = "\ | |||
20 | " | 20 | " |
21 | 21 | ||
22 | CXXFLAGS += "-std=c++14" | 22 | CXXFLAGS += "-std=c++14" |
23 | |||
24 | do_install:append() { | ||
25 | sed -i -e 's|${DEBUG_PREFIX_MAP}||g; s|--sysroot=${STAGING_DIR_TARGET}||g' ${D}${bindir}/log4cpp-config | ||
26 | } | ||