diff options
author | Florian Boor <florian.boor@kernelconcepts.de> | 2006-07-28 11:02:12 +0000 |
---|---|---|
committer | Florian Boor <florian.boor@kernelconcepts.de> | 2006-07-28 11:02:12 +0000 |
commit | f4008ca823bfbb7c33d92008137ff78cc6907f17 (patch) | |
tree | daae055d5d4d5f52512309f4287a63aeb5b26164 | |
parent | bc3d70b7bb1452174c21b3d5d8fc8803d4bbc872 (diff) |
binutils 2.15.94.0.1: Do not remove ldscripts, it breaks the SDK.
Do not create links without cross prefix, it break the SDK.
-rw-r--r-- | packages/binutils/binutils_2.15.94.0.1.bb | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/packages/binutils/binutils_2.15.94.0.1.bb b/packages/binutils/binutils_2.15.94.0.1.bb index 43ac3db2ae..3153c7492f 100644 --- a/packages/binutils/binutils_2.15.94.0.1.bb +++ b/packages/binutils/binutils_2.15.94.0.1.bb @@ -3,7 +3,7 @@ HOMEPAGE = "http://www.gnu.org/software/binutils/" SECTION = "devel" LICENSE = "GPL" MAINTAINER = "Gerald Britton <gbritton@doomcom.org>" -PR = "r3" +PR = "r4" inherit autotools gettext @@ -99,9 +99,6 @@ do_stage () { do_install () { autotools_do_install - # We don't really need these, so we'll remove them... - rm -rf ${D}${libdir}/ldscripts - # Fix the /usr/${TARGET_SYS}/bin/* links for l in ${D}${prefix}/${TARGET_SYS}/bin/*; do rm -f $l @@ -116,9 +113,4 @@ do_install () { install -m 644 ${S}/include/libiberty.h ${D}${includedir} cd ${D}${bindir} - - # Symlinks for ease of running these on the native target - for p in ${TARGET_SYS}-* ; do - ln -sf $p `echo $p | sed -e s,${TARGET_SYS}-,,` - done } |