[oe-commits] Tom Rini : binutils.inc: Switch to TARGET_PREFIX not TARGET_SYS

git version control git at git.openembedded.org
Thu May 5 14:56:29 UTC 2011


Module: openembedded.git
Branch: master
Commit: 79b497edc0ce5d54db564818e59b690d3391d6ce
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=79b497edc0ce5d54db564818e59b690d3391d6ce

Author: Tom Rini <tom_rini at mentor.com>
Date:   Tue May  3 08:08:17 2011 -0700

binutils.inc: Switch to TARGET_PREFIX not TARGET_SYS

When TARGET_PREFIX and TARGET_SYS didn't match up, the symlinks and
update-alternatives weren't working.  TARGET_PREFIX is what we use when
configuring so it's what we should be using here.

Signed-off-by: Tom Rini <tom_rini at mentor.com>

---

 recipes/binutils/binutils.inc |   14 +++++++-------
 1 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/recipes/binutils/binutils.inc b/recipes/binutils/binutils.inc
index ab9e457..ddbb6fc 100644
--- a/recipes/binutils/binutils.inc
+++ b/recipes/binutils/binutils.inc
@@ -3,7 +3,7 @@ HOMEPAGE = "http://www.gnu.org/software/binutils/"
 SECTION = "devel"
 LICENSE = "GPL"
 
-INC_PR = "r13"
+INC_PR = "r14"
 
 COMPATIBLE_TARGET_SYS ?= "(?!nios2)"
 
@@ -106,8 +106,8 @@ do_install () {
 	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}-,,`
+	for p in ${TARGET_PREFIX}* ; do
+		ln -sf $p `echo $p | sed -e s,${TARGET_PREFIX},,`
 	done
 
 	rm ${D}${bindir}/ar ${D}${bindir}/strings
@@ -115,13 +115,13 @@ do_install () {
 
 
 pkg_postinst_${PN}-symlinks () {
-	update-alternatives --install ${bindir}/ar ar ${TARGET_SYS}-ar 100
-	update-alternatives --install ${bindir}/strings strings ${TARGET_SYS}-strings 100
+	update-alternatives --install ${bindir}/ar ar ${TARGET_PREFIX}ar 100
+	update-alternatives --install ${bindir}/strings strings ${TARGET_PREFIX}strings 100
 }
 
 
 pkg_prerm_${PN}-symlinks () {
-	update-alternatives --remove ar ${TARGET_SYS}-ar
-	update-alternatives --remove strings ${TARGET_SYS}-strings
+	update-alternatives --remove ar ${TARGET_PREFIX}ar
+	update-alternatives --remove strings ${TARGET_PREFIX}strings
 }
 





More information about the Openembedded-commits mailing list