]> code.ossystems Code Review - openembedded-core.git/commitdiff
eglibc: Avoid "installed but not shipped" warning for ld.so.conf
authorPhil Blundell <pb@pbcl.net>
Wed, 24 Apr 2013 16:39:59 +0000 (17:39 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 29 Apr 2013 13:43:50 +0000 (14:43 +0100)
If USE_LDCONFIG is not set then we won't ship ld.so.conf.  However,
eglibc still installs it which leads to a QA warning.  Prevent that by
removing the file (and the subsequently-empty directory /etc) in this
situation.

Signed-off-by: Phil Blundell <philb@gnu.org>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
meta/recipes-core/eglibc/eglibc-package.inc

index 88a00a49a822e346d2e06743a3ee5e55e78595b9..f144273c197ef8b9808cc1408d60cc444748485e 100644 (file)
@@ -84,6 +84,16 @@ do_install_append () {
        if [ -e "${D}${infodir}/dir" ]; then
                rm -f ${D}${infodir}/dir
        fi
+
+       if [ "${USE_LDCONFIG}" != "1" ]; then
+               # We won't ship this file (see FILES above) so let's not install it
+               rm -f ${D}${sysconfdir}/ld.so.conf
+               # This directory will be empty now so remove it too.
+               # But check whether it exists first, since it won't for eglibc-initial.
+               if [ -d ${D}${sysconfdir} ]; then
+                       rmdir ${D}${sysconfdir}
+               fi
+       fi
 }
 
 do_install_locale () {