diff options
author | Gerald Britton <gbritton@doomcom.org> | 2003-12-05 06:54:57 +0000 |
---|---|---|
committer | Gerald Britton <gbritton@doomcom.org> | 2003-12-05 06:54:57 +0000 |
commit | 367362d3ec726a2ff566a6c72702acc8c0f07672 (patch) | |
tree | 8a13c73665a75c77629b9decaaf30d827396a9e9 /binutils/binutils-cross_2.14.90.0.6.oe | |
parent | b9410067120c8f737ba35f886734d707116611e4 (diff) |
Merge openembedded@openembedded.bkbits.net:packages
into doomcom.org:/home/gbritton/devel/OE/packages
2003/12/05 01:54:33-05:00 doomcom.org!gbritton
big toolchain cleanup, mostly uclibc
BKrev: 3fd02bc16TXaLTReYe_27R0jRFcAcw
Diffstat (limited to 'binutils/binutils-cross_2.14.90.0.6.oe')
-rw-r--r-- | binutils/binutils-cross_2.14.90.0.6.oe | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/binutils/binutils-cross_2.14.90.0.6.oe b/binutils/binutils-cross_2.14.90.0.6.oe index 3ad13e5cbb..7d5e9967e3 100644 --- a/binutils/binutils-cross_2.14.90.0.6.oe +++ b/binutils/binutils-cross_2.14.90.0.6.oe @@ -3,8 +3,28 @@ inherit cross PROVIDES = virtual/${TARGET_PREFIX}binutils DEPENDS = patcher FILESDIR = ${@os.path.dirname(oe.data.getVar('FILE',d,1))}/binutils-${PV} +PACKAGES = -D=${CROSS_DIR} -do_install () { +do_stage () { oe_runmake install + + # We don't really need these, so we'll remove them... + rm -rf ${CROSS_DIR}/lib/ldscripts + rm -rf ${CROSS_DIR}/share/info + rm -rf ${CROSS_DIR}/share/locale + rm -rf ${CROSS_DIR}/share/man + rmdir ${CROSS_DIR}/share || : + rmdir ${CROSS_DIR}/usr/lib/gcc-lib || : + rmdir ${CROSS_DIR}/usr/lib || : + rmdir ${CROSS_DIR}/usr || : + + # We want to move this into the target specific location + mkdir -p ${CROSS_DIR}/${TARGET_SYS}/lib + mv -f ${CROSS_DIR}/lib/libiberty.a ${CROSS_DIR}/${TARGET_SYS}/lib + rmdir ${CROSS_DIR}/lib || : } + +do_install () { + : +} + |