diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/lsb/lsb_4.1.bb | 8 |
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 \ ${base_libdir}/lsb/* \ ${libdir}/sendmail \ " + +# The sysroot/${libdir}/sendmail conflicts with esmtp's, and it's a +# symlink to ${sbindir}/sendmail which is meaningless for sysroot, so +# remove it. +SYSROOT_PREPROCESS_FUNCS += "remove_sysroot_sendmail" +remove_sysroot_sendmail() { + rm -r "${SYSROOT_DESTDIR}${libdir}/sendmail" +} |