From: Florian Boor Date: Fri, 28 Jul 2006 11:39:30 +0000 (+0000) Subject: disapproval of revision '23f392c4a32f829ba2c33998e47b14cc08c51a26' X-Git-Tag: Release-2010-05/1~9453^2~1070^2~3^2~3^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a7bae3acdd5387c4882fadfc0fdfb7ac5a49c309;p=openembedded.git disapproval of revision '23f392c4a32f829ba2c33998e47b14cc08c51a26' --- diff --git a/packages/binutils/binutils_2.15.94.0.1.bb b/packages/binutils/binutils_2.15.94.0.1.bb index 3153c7492f..43ac3db2ae 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 " -PR = "r4" +PR = "r3" inherit autotools gettext @@ -99,6 +99,9 @@ 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 @@ -113,4 +116,9 @@ 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 }