[oe-commits] Tom Rini : gcc-package-target.inc: Switch to TARGET_PREFIX in symlinks

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


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

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

gcc-package-target.inc: Switch to TARGET_PREFIX in symlinks

When TARGET_PREFIX and TARGET_SYS didn't match up, the symlinks we made
were invalid.  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/gcc/gcc-package-target.inc |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/recipes/gcc/gcc-package-target.inc b/recipes/gcc/gcc-package-target.inc
index 438c314..3f0b6e4 100644
--- a/recipes/gcc/gcc-package-target.inc
+++ b/recipes/gcc/gcc-package-target.inc
@@ -155,16 +155,16 @@ GROUP ( libgcc_s.so.1 libgcc.a )" > ${D}${libdir}/libgcc_s.so
 	rm -f ${TARGET_ARCH}-*${TARGET_ARCH}-*
 
 	# Symlinks so we can use these trivially on the target
-	ln -sf ${TARGET_SYS}-g77 g77 || true
-	ln -sf ${TARGET_SYS}-gfortran gfortran || true
-	ln -sf ${TARGET_SYS}-g++ g++
-	ln -sf ${TARGET_SYS}-gcc gcc
+	ln -sf ${TARGET_PREFIX}g77 g77 || true
+	ln -sf ${TARGET_PREFIX}gfortran gfortran || true
+	ln -sf ${TARGET_PREFIX}g++ g++
+	ln -sf ${TARGET_PREFIX}gcc gcc
 	ln -sf g77 f77 || true
 	ln -sf gfortran f95 || true
 	ln -sf g++ c++
 	ln -sf gcc cc
-	ln -sf ${bindir}/${TARGET_SYS}-cpp ${D}${base_libdir}/cpp
-	ln -sf ${bindir}/${TARGET_SYS}-cpp ${D}${bindir}/cpp
+	ln -sf ${bindir}/${TARGET_PREFIX}cpp ${D}${base_libdir}/cpp
+	ln -sf ${bindir}/${TARGET_PREFIX}cpp ${D}${bindir}/cpp
 
 	# Remove precompiled c++ headers as they are really big
 	rm -rf ${D}${includedir}/c++/${BINV}/${TARGET_SYS}/bits/*.gch





More information about the Openembedded-commits mailing list