diff options
author | Lianhao Lu <lianhao.lu@intel.com> | 2012-03-26 15:10:03 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-26 11:53:42 +0100 |
commit | 04a08bf7e8d7cf4b6b844a88173b5d1d7917c8af (patch) | |
tree | ed10977e88736f2f15f3381689d3312e0380b719 /meta/recipes-devtools/gcc/gcc-package-sdk.inc | |
parent | 647595821870693186c9ecad1bdfa12fe4ea334d (diff) | |
download | openembedded-core-04a08bf7e8d7cf4b6b844a88173b5d1d7917c8af.tar.gz openembedded-core-04a08bf7e8d7cf4b6b844a88173b5d1d7917c8af.tar.bz2 openembedded-core-04a08bf7e8d7cf4b6b844a88173b5d1d7917c8af.zip |
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@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gcc/gcc-package-sdk.inc')
-rw-r--r-- | 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 e2095e39fd..95d6804e93 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}/ |