diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2024-07-10 16:23:36 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2024-07-10 09:02:52 -0700 |
| commit | 09cf0282766428eccda29679e69c8b3761b3ca6d (patch) | |
| tree | 40875a93434ab4872b428e0b584b9501eaf11d91 | |
| parent | 7bbf253811df6940602bcfc2c53084076b20cdb3 (diff) | |
| download | meta-openembedded-09cf0282766428eccda29679e69c8b3761b3ca6d.tar.gz | |
fetchmail: disable rpath to fix buildpaths warning.
There was an error with the last modification to the buildpaths warning, which could cause segment error.
fix the following warning about buildpath:
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>
| -rw-r--r-- | meta-networking/recipes-support/fetchmail/fetchmail_6.4.38.bb | 5 |
1 files changed, 1 insertions, 4 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 6cde94b202..cc23d5a34e 100644 --- a/meta-networking/recipes-support/fetchmail/fetchmail_6.4.38.bb +++ b/meta-networking/recipes-support/fetchmail/fetchmail_6.4.38.bb | |||
| @@ -16,13 +16,10 @@ SRC_URI[sha256sum] = "a6cb4ea863ac61d242ffb2db564a39123761578d3e40d71ce7b6f2905b | |||
| 16 | 16 | ||
| 17 | inherit autotools gettext pkgconfig python3-dir python3native | 17 | 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} --disable-rpath " |
| 20 | |||
| 21 | INSANE_SKIP:${PN} = "already-stripped" | ||
| 22 | 20 | ||
| 23 | do_install:append() { | 21 | do_install:append() { |
| 24 | sed -i 's,${RECIPE_SYSROOT_NATIVE},,g' ${D}${bindir}/fetchmailconf | 22 | sed -i 's,${RECIPE_SYSROOT_NATIVE},,g' ${D}${bindir}/fetchmailconf |
| 25 | sed -i 's,${RECIPE_SYSROOT},,g' ${D}${bindir}/fetchmail | ||
| 26 | } | 23 | } |
| 27 | 24 | ||
| 28 | PACKAGES =+ "fetchmail-python" | 25 | PACKAGES =+ "fetchmail-python" |
