diff options
author | Khem Raj <raj.khem@gmail.com> | 2023-05-22 16:44:49 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-05-23 08:48:18 -0700 |
commit | a91495527074a801c9cbf1591eb6a316a9a8a129 (patch) | |
tree | 21afe5d44b277dc98ce2d3d552f741d69a66f975 | |
parent | f3913710b89aa94e941779d5edaa0b2135a84d5a (diff) | |
download | meta-openembedded-a91495527074a801c9cbf1591eb6a316a9a8a129.tar.gz |
tvheadend: Upgrade to latest master
Fix buildpath errors due to generate build.c file containing compiler
options
Fixes
WARNING: tvheadend-4.3+gitAUTOINC+cc60283368-r0 do_package_qa: QA Issue: File /usr/bin/tvheadend in package tvheadend contains reference to TMPDIR [buildpaths]
WARNING: tvheadend-4.3+gitAUTOINC+cc60283368-r0 do_package_qa: QA Issue: File /usr/src/debug/tvheadend/4.3+gitAUTOINC+cc60283368-r0/build.linux/build.c in package tvheadend-src contains reference to TMPDIR [buildpaths]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-multimedia/recipes-dvb/tvheadend/tvheadend_git.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-dvb/tvheadend/tvheadend_git.bb b/meta-multimedia/recipes-dvb/tvheadend/tvheadend_git.bb index b3e5e78c7c..d64ee96f78 100644 --- a/meta-multimedia/recipes-dvb/tvheadend/tvheadend_git.bb +++ b/meta-multimedia/recipes-dvb/tvheadend/tvheadend_git.bb | |||
@@ -30,3 +30,7 @@ EXTRA_OECONF:append:libc-musl = " --disable-execinfo" | |||
30 | 30 | ||
31 | EXTRA_OEMAKE = "CFLAGS_NO_WERROR=yes" | 31 | EXTRA_OEMAKE = "CFLAGS_NO_WERROR=yes" |
32 | CLEANBROKEN = "1" | 32 | CLEANBROKEN = "1" |
33 | |||
34 | do_configure:append() { | ||
35 | sed -i -e "s|${WORKDIR}|<TOPDIR>|g" ${B}/build.linux/build.c | ||
36 | } | ||