diff options
author | Khem Raj <raj.khem@gmail.com> | 2009-09-11 09:51:50 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2009-09-11 09:54:20 -0700 |
commit | 48e831f5beba63b9a374c3165f37e2c22f32e5c2 (patch) | |
tree | a3f742ee931632878d628e162146faecfe75a1f3 /recipes | |
parent | 7e1ca09587a08962d5251502bcddb2d1010b73c9 (diff) |
binutils_cvs.bb: Do not use autotools_do_install
* CVS checkout include full src tree so we can not
do make install because then it will try to install
every component in src. We have to install ld
gas and binutils only.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/binutils/binutils_cvs.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/binutils/binutils_cvs.bb b/recipes/binutils/binutils_cvs.bb index 88dcd78c90..b335767687 100644 --- a/recipes/binutils/binutils_cvs.bb +++ b/recipes/binutils/binutils_cvs.bb @@ -1,5 +1,5 @@ FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/binutils-cvs" -PV = "0.0+cvs${SRCDATE}" +PV = "2.20+cvs${SRCDATE}" INC_PR = "r5" PR = "${INC_PR}.1" @@ -21,7 +21,7 @@ do_compile () { oe_runmake all-ld all-binutils all-gas } do_install () { - autotools_do_install install-ld install-binutils install-gas + oe_runmake 'DESTDIR=${D}' install-ld install-binutils install-gas # We don't really need these, so we'll remove them... rm -rf ${D}${libdir}/ldscripts |