make binutils-cross depend on flex-native and bison-native
authorMichael Lauer <mickey@vanille-media.de>
Sat, 17 Jul 2004 13:25:26 +0000 (13:25 +0000)
committerMichael Lauer <mickey@vanille-media.de>
Sat, 17 Jul 2004 13:25:26 +0000 (13:25 +0000)
BKrev: 40f928c6b6Mpz7FYsQ2tSo69WkkyFg

binutils/binutils-cross_2.15.90.0.3.oe

index e69de29..4f0f4aa 100644 (file)
@@ -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 () {
+       :
+}
+