[oe-commits] Lianhao Lu : gcc-cross-canadian: Fixed packaging warnings.

git at git.openembedded.org git at git.openembedded.org
Mon Mar 26 11:17:17 UTC 2012


Module: openembedded-core.git
Branch: master
Commit: 04a08bf7e8d7cf4b6b844a88173b5d1d7917c8af
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=04a08bf7e8d7cf4b6b844a88173b5d1d7917c8af

Author: Lianhao Lu <lianhao.lu at intel.com>
Date:   Mon Mar 26 15:10:03 2012 +0800

gcc-cross-canadian: Fixed packaging warnings.

Removed non-shipped empty directories:
 -${prefix}/${TARGET_SYS}
 -${libdir}/../lib
 -${prefix}/include

Signed-off-by: Lianhao Lu <lianhao.lu at intel.com>
Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>

---

 meta/recipes-devtools/gcc/gcc-package-sdk.inc |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/meta/recipes-devtools/gcc/gcc-package-sdk.inc b/meta/recipes-devtools/gcc/gcc-package-sdk.inc
index e2095e3..95d6804 100644
--- a/meta/recipes-devtools/gcc/gcc-package-sdk.inc
+++ b/meta/recipes-devtools/gcc/gcc-package-sdk.inc
@@ -46,6 +46,13 @@ do_install () {
 	rm -f ${D}${libdir}/../lib/libiberty.a
 	rm -f ${D}${libdir}/libiberty.a
 
+	# Cleanup empty directories which are not shipped
+	# we use rmdir instead of 'rm -f' to ensure the directories are empty
+	rmdir ${D}${libdir}/../lib
+	rmdir ${D}${prefix}/${TARGET_SYS}/lib
+	rmdir ${D}${prefix}/${TARGET_SYS}
+	rmdir ${D}${includedir}
+
 	# Insert symlinks into libexec so when tools without a prefix are searched for, the correct ones are
 	# found.
 	dest=${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/





More information about the Openembedded-commits mailing list