From: Riku Voipio Date: Mon, 26 Aug 2013 09:51:01 +0000 (+0300) Subject: eglibc: fix directory cleanup for 2.17 X-Git-Tag: rev_ivi_2015_02_04~11262 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a3a3be018494ac076e29a7a3e80833b17e72c406;p=scm%2Fbb%2Ftizen-distro.git eglibc: fix directory cleanup for 2.17 Commit e0c2dd275827a4b37b8116d0f0119333638461af broke building eglibc 2.17, which still ships pt_chown under eglibc/ directory. Fix by only deleting directory when pt_chown is not there. Cc: Khem Raj (From OE-Core rev: 10722a37bb7efa563425a7389100b9322d96492e) Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-core/eglibc/eglibc-package.inc b/meta/recipes-core/eglibc/eglibc-package.inc index c36d16c..3adf1a9 100644 --- a/meta/recipes-core/eglibc/eglibc-package.inc +++ b/meta/recipes-core/eglibc/eglibc-package.inc @@ -75,7 +75,7 @@ do_install_append () { rm -rf ${D}${localstatedir} # remove empty eglibc dir - if [ -d ${D}${libdir}/eglibc ]; then + if [ -d ${D}${libdir}/eglibc -a ! -e ${D}${libdir}/eglibc/pt_chown ]; then rmdir ${D}${libdir}/eglibc fi oe_multilib_header bits/syscall.h