aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/binutils/binutils_cvs.bb
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2010-05-21 00:19:00 -0700
committerKhem Raj <raj.khem@gmail.com>2010-05-21 00:21:48 -0700
commit9bd07cffd22f65cb9b7b6f3d0c59939de5da8fb3 (patch)
tree947be8d1f7c62d2f99fda11a3b0c95cf5a5ef89f /recipes/binutils/binutils_cvs.bb
parentd98ded68ef095b2568a39173eec25053aadc633a (diff)
downloadopenembedded-9bd07cffd22f65cb9b7b6f3d0c59939de5da8fb3.tar.gz
binutils-cross-sdk_cvs.bb: Use special do_install for cvs version.
* Remove do_stage for binutils_cvs * do_install is special for binutils cvs becasue binutils cvs checks out whole src tree hence it can not use autotools install funciton because that will install all tools that are in sourceware src repo. We only want all-ld all-binutils and all-gas. Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes/binutils/binutils_cvs.bb')
-rw-r--r--recipes/binutils/binutils_cvs.bb13
1 files changed, 1 insertions, 12 deletions
diff --git a/recipes/binutils/binutils_cvs.bb b/recipes/binutils/binutils_cvs.bb
index b335767687..43a984f74c 100644
--- a/recipes/binutils/binutils_cvs.bb
+++ b/recipes/binutils/binutils_cvs.bb
@@ -1,7 +1,7 @@
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/binutils-cvs"
PV = "2.20+cvs${SRCDATE}"
INC_PR = "r5"
-PR = "${INC_PR}.1"
+PR = "${INC_PR}.2"
require binutils.inc
@@ -49,14 +49,3 @@ do_install () {
rm ${D}${bindir}/ar ${D}${bindir}/strings
}
-do_stage () {
- oe_libinstall -so -a -C opcodes libopcodes ${STAGING_LIBDIR}/
- oe_libinstall -a -C libiberty libiberty ${STAGING_LIBDIR}/
- oe_libinstall -so -a -C bfd libbfd ${STAGING_LIBDIR}/
- install -m 0644 ${S}/include/dis-asm.h ${STAGING_INCDIR}/
- install -m 0644 ${S}/include/symcat.h ${STAGING_INCDIR}/
- install -m 0644 ${S}/include/libiberty.h ${STAGING_INCDIR}/
- install -m 0644 ${S}/include/ansidecl.h ${STAGING_INCDIR}/
- install -m 0644 ${S}/include/bfdlink.h ${STAGING_INCDIR}/
- install -m 0644 bfd/bfd.h ${STAGING_INCDIR}/
-}