diff options
author | Koen Kooi <koen@openembedded.org> | 2006-10-18 08:44:47 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2006-10-18 08:44:47 +0000 |
commit | 9294ba61fe46ce60b5feaa4ca0c8ebe5f41ad4eb (patch) | |
tree | 37a3b315e5b79784c233d7ff86320a370613d084 /packages/binutils/binutils-cross_2.17.50.0.5.bb | |
parent | edd8e009d5a07a72324434786439af50e5eed919 (diff) |
binutils: add 2.17.50.0.5 with patches from uclibc buildroot
Diffstat (limited to 'packages/binutils/binutils-cross_2.17.50.0.5.bb')
-rw-r--r-- | packages/binutils/binutils-cross_2.17.50.0.5.bb | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/packages/binutils/binutils-cross_2.17.50.0.5.bb b/packages/binutils/binutils-cross_2.17.50.0.5.bb new file mode 100644 index 0000000000..1f2f43ecf8 --- /dev/null +++ b/packages/binutils/binutils-cross_2.17.50.0.5.bb @@ -0,0 +1,32 @@ +SECTION = "devel" +require binutils_${PV}.bb +inherit cross +DEPENDS += "flex-native bison-native" +PROVIDES = "virtual/${TARGET_PREFIX}binutils" +FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/binutils-${PV}" +PACKAGES = "" +EXTRA_OECONF = "--with-sysroot=${CROSS_DIR}/${TARGET_SYS} \ + --program-prefix=${TARGET_PREFIX}" + +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}/${libdir}/gcc-lib || : + rmdir ${CROSS_DIR}/${libdir} || : + rmdir ${CROSS_DIR}/${prefix} || : + + # 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 () { + : +} |