diff options
author | Qi Hou <qi.hou@windriver.com> | 2017-12-04 16:29:57 +0800 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2017-12-22 19:43:54 -0800 |
commit | aaf496df4cef4703a6d4b380b3f5ddf738753406 (patch) | |
tree | 74f3c92e71feb452d562fde893ff45cfb1058649 /meta-oe/recipes-support/openldap | |
parent | ea42a6f6714020cb217bd3d6241821cab86ee207 (diff) | |
download | meta-openembedded-aaf496df4cef4703a6d4b380b3f5ddf738753406.tar.gz |
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@windriver.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/openldap')
-rw-r--r-- | meta-oe/recipes-support/openldap/openldap_2.4.45.bb | 1 |
1 files changed, 1 insertions, 0 deletions
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 06d2467ec7..82d6619838 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() { | |||
188 | 188 | ||
189 | # Installing slapd under ${sbin} is more FHS and LSB compliance | 189 | # Installing slapd under ${sbin} is more FHS and LSB compliance |
190 | mv ${D}${libexecdir}/slapd ${D}/${sbindir}/slapd | 190 | mv ${D}${libexecdir}/slapd ${D}/${sbindir}/slapd |
191 | rmdir --ignore-fail-on-non-empty ${D}${libexecdir} | ||
191 | SLAPTOOLS="slapadd slapcat slapdn slapindex slappasswd slaptest slapauth slapacl slapschema" | 192 | SLAPTOOLS="slapadd slapcat slapdn slapindex slappasswd slaptest slapauth slapacl slapschema" |
192 | cd ${D}/${sbindir}/ | 193 | cd ${D}/${sbindir}/ |
193 | rm -f ${SLAPTOOLS} | 194 | rm -f ${SLAPTOOLS} |