summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/lsb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-extended/lsb')
-rw-r--r--meta/recipes-extended/lsb/lsb_4.1.bb8
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/recipes-extended/lsb/lsb_4.1.bb b/meta/recipes-extended/lsb/lsb_4.1.bb
index 69f3962ec4..b4ef98eea7 100644
--- a/meta/recipes-extended/lsb/lsb_4.1.bb
+++ b/meta/recipes-extended/lsb/lsb_4.1.bb
@@ -121,3 +121,11 @@ FILES_${PN} += "/lib64 \
121 ${base_libdir}/lsb/* \ 121 ${base_libdir}/lsb/* \
122 ${libdir}/sendmail \ 122 ${libdir}/sendmail \
123 " 123 "
124
125# The sysroot/${libdir}/sendmail conflicts with esmtp's, and it's a
126# symlink to ${sbindir}/sendmail which is meaningless for sysroot, so
127# remove it.
128SYSROOT_PREPROCESS_FUNCS += "remove_sysroot_sendmail"
129remove_sysroot_sendmail() {
130 rm -r "${SYSROOT_DESTDIR}${libdir}/sendmail"
131}