[oe-commits] [meta-openembedded] 24/30: openldap: fix QA Warning

git at git.openembedded.org git at git.openembedded.org
Sat Dec 23 04:09:02 UTC 2017


This is an automated email from the git hooks/post-receive script.

armin_kuster pushed a commit to branch master
in repository meta-openembedded.

commit aaf496df4cef4703a6d4b380b3f5ddf738753406
Author: Qi Hou <qi.hou at windriver.com>
AuthorDate: Mon Dec 4 16:29:57 2017 +0800

    openldap: fix QA Warning
    
    While building openldap, there was a warning, like below:
    
    WARNING: QA Issue: openldap: Files/directories were installed but not shipped in any package:
      /usr/libexec
    Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install.
    openldap: 1 installed and not shipped files. [installed-vs-shipped]
    
    This is because that after openldap all contents of /usr/libexec are split
    into subsets or moved into other directory and no one makes use of it.
    
    So, to fix this QA warning, delete /usr/libexec.
    
    Signed-off-by: Qi Hou <qi.hou at windriver.com>
    Signed-off-by: Armin Kuster <akuster808 at gmail.com>
---
 meta-oe/recipes-support/openldap/openldap_2.4.45.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-oe/recipes-support/openldap/openldap_2.4.45.bb b/meta-oe/recipes-support/openldap/openldap_2.4.45.bb
index 06d2467..82d6619 100644
--- a/meta-oe/recipes-support/openldap/openldap_2.4.45.bb
+++ b/meta-oe/recipes-support/openldap/openldap_2.4.45.bb
@@ -188,6 +188,7 @@ do_install_append() {
 
     # Installing slapd under ${sbin} is more FHS and LSB compliance
     mv ${D}${libexecdir}/slapd ${D}/${sbindir}/slapd
+    rmdir --ignore-fail-on-non-empty ${D}${libexecdir}
     SLAPTOOLS="slapadd slapcat slapdn slapindex slappasswd slaptest slapauth slapacl slapschema"
     cd ${D}/${sbindir}/
     rm -f ${SLAPTOOLS}

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list