diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-07-17 13:25:26 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-07-17 13:25:26 +0000 |
commit | c929c3b4096d86351eed9cd5b19540095d73e01f (patch) | |
tree | 8e3b2716c10eb28cc589d00b8df36ccd8c735da3 /binutils/binutils-cross_2.15.90.0.3.oe | |
parent | 1ee23354d93bf1ae9e47e734260abfb1dae00be6 (diff) |
make binutils-cross depend on flex-native and bison-native
BKrev: 40f928c6b6Mpz7FYsQ2tSo69WkkyFg
Diffstat (limited to 'binutils/binutils-cross_2.15.90.0.3.oe')
-rw-r--r-- | binutils/binutils-cross_2.15.90.0.3.oe | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/binutils/binutils-cross_2.15.90.0.3.oe b/binutils/binutils-cross_2.15.90.0.3.oe index e69de29bb2..4f0f4aaf4e 100644 --- a/binutils/binutils-cross_2.15.90.0.3.oe +++ b/binutils/binutils-cross_2.15.90.0.3.oe @@ -0,0 +1,33 @@ +include binutils_${PV}.oe +inherit cross +DEPENDS += "flex-native bison-native" +PROVIDES = "virtual/${TARGET_PREFIX}binutils" +FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/binutils-${PV}" +PACKAGES = "" +EXTRA_OECONF = "--with-sysroot=${CROSS_DIR}/${TARGET_SYS} \ + --disable-nls \ + --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 () { + : +} + |