From: Chris Larson <[email protected]> This ensures it works even if TARGET_PREFIX != ${TARGET_SYS}-
Signed-off-by: Chris Larson <[email protected]> --- meta-oe/recipes-devtools/binutils/binutils.inc | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-oe/recipes-devtools/binutils/binutils.inc b/meta-oe/recipes-devtools/binutils/binutils.inc index d9e859e..f8fc7b8 100644 --- a/meta-oe/recipes-devtools/binutils/binutils.inc +++ b/meta-oe/recipes-devtools/binutils/binutils.inc @@ -109,8 +109,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 -- 1.7.3.2.430.g208247 _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
