diff options
author | alperak <alperyasinak1@gmail.com> | 2024-06-26 12:22:44 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-06-28 11:22:01 -0700 |
commit | e7053ca6b6790dd4de11fb0e9fa10b1fb4801dbf (patch) | |
tree | 648b80c40e614ebdb2ab7f4865f76133d882d09a | |
parent | 611a50bc38f09101a7091c7f3c53d696dea907f4 (diff) | |
download | meta-openembedded-e7053ca6b6790dd4de11fb0e9fa10b1fb4801dbf.tar.gz |
pcp: Fix contains reference to TMPDIR [buildpaths] warnings
WARNING: pcp-6.0.5-r0 do_package_qa: QA Issue: File /etc/pcp.conf in package pcp contains reference to TMPDIR [buildpaths]
WARNING: pcp-6.0.5-r0 do_package_qa: QA Issue: File /usr/include/pcp/builddefs in package pcp-dev contains reference to TMPDIR [buildpaths]
Signed-off-by: alperak <alperyasinak1@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-support/pcp/pcp_6.0.5.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/pcp/pcp_6.0.5.bb b/meta-oe/recipes-support/pcp/pcp_6.0.5.bb index 10545b65ea..f6f2a65752 100644 --- a/meta-oe/recipes-support/pcp/pcp_6.0.5.bb +++ b/meta-oe/recipes-support/pcp/pcp_6.0.5.bb | |||
@@ -93,6 +93,10 @@ do_install () { | |||
93 | sed -i "s#PCP_SORT_PROG=.*#PCP_SORT_PROG=sort#" ${D}/${sysconfdir}/pcp.conf | 93 | sed -i "s#PCP_SORT_PROG=.*#PCP_SORT_PROG=sort#" ${D}/${sysconfdir}/pcp.conf |
94 | sed -i "s#PCP_ECHO_PROG=.*#PCP_ECHO_PROG=echo#" ${D}/${sysconfdir}/pcp.conf | 94 | sed -i "s#PCP_ECHO_PROG=.*#PCP_ECHO_PROG=echo#" ${D}/${sysconfdir}/pcp.conf |
95 | sed -i "s#PCP_WHICH_PROG=.*#PCP_WHICH_PROG=which#" ${D}/${sysconfdir}/pcp.conf | 95 | sed -i "s#PCP_WHICH_PROG=.*#PCP_WHICH_PROG=which#" ${D}/${sysconfdir}/pcp.conf |
96 | sed -i -e 's#${RECIPE_SYSROOT}##g' ${D}/${sysconfdir}/pcp.conf | ||
97 | sed -i -e 's#${RECIPE_SYSROOT}##g' \ | ||
98 | -e 's#${RECIPE_SYSROOT_NATIVE}##g' \ | ||
99 | -e 's#${TMPDIR}##g' ${D}${includedir}/pcp/builddefs | ||
96 | } | 100 | } |
97 | 101 | ||
98 | PACKAGES += " ${PN}-export-zabbix-agent ${PN}-testsuite \ | 102 | PACKAGES += " ${PN}-export-zabbix-agent ${PN}-testsuite \ |