diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2024-05-22 16:48:46 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-05-23 16:17:11 -0700 |
commit | d93d67dab3066dc38b5d9d07311d4567cf2ef2b5 (patch) | |
tree | 9d632de0c5869a7647271bdfba9798d3275071ce /meta-networking | |
parent | cc2ce07b42908f7faa22a56cbc39855432743c5d (diff) | |
download | meta-openembedded-d93d67dab3066dc38b5d9d07311d4567cf2ef2b5.tar.gz |
fetchmail: Fix buildpaths warning.
WARNING: fetchmail-6.4.38-r0 do_package_qa: QA Issue: File /usr/bin/fetchmail in package fetchmail contains reference to TMPDIR [buildpaths]
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking')
-rw-r--r-- | meta-networking/recipes-support/fetchmail/fetchmail_6.4.38.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-networking/recipes-support/fetchmail/fetchmail_6.4.38.bb b/meta-networking/recipes-support/fetchmail/fetchmail_6.4.38.bb index 587a479497..6cde94b202 100644 --- a/meta-networking/recipes-support/fetchmail/fetchmail_6.4.38.bb +++ b/meta-networking/recipes-support/fetchmail/fetchmail_6.4.38.bb | |||
@@ -18,8 +18,11 @@ inherit autotools gettext pkgconfig python3-dir python3native | |||
18 | 18 | ||
19 | EXTRA_OECONF = "--with-ssl=${STAGING_DIR_HOST}${prefix}" | 19 | EXTRA_OECONF = "--with-ssl=${STAGING_DIR_HOST}${prefix}" |
20 | 20 | ||
21 | INSANE_SKIP:${PN} = "already-stripped" | ||
22 | |||
21 | do_install:append() { | 23 | do_install:append() { |
22 | sed -i 's,${RECIPE_SYSROOT_NATIVE},,g' ${D}${bindir}/fetchmailconf | 24 | sed -i 's,${RECIPE_SYSROOT_NATIVE},,g' ${D}${bindir}/fetchmailconf |
25 | sed -i 's,${RECIPE_SYSROOT},,g' ${D}${bindir}/fetchmail | ||
23 | } | 26 | } |
24 | 27 | ||
25 | PACKAGES =+ "fetchmail-python" | 28 | PACKAGES =+ "fetchmail-python" |