summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/recipes-devtools/gcc/gcc-package-sdk.inc4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gcc/gcc-package-sdk.inc b/meta/recipes-devtools/gcc/gcc-package-sdk.inc
index f32e95fb0e..bb6dfde906 100644
--- a/meta/recipes-devtools/gcc/gcc-package-sdk.inc
+++ b/meta/recipes-devtools/gcc/gcc-package-sdk.inc
@@ -60,6 +60,10 @@ do_install () {
60 dest=${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/ 60 dest=${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/
61 install -d $dest 61 install -d $dest
62 for t in ar as ld nm objcopy objdump ranlib strip g77 gcc cpp gfortran; do 62 for t in ar as ld nm objcopy objdump ranlib strip g77 gcc cpp gfortran; do
63 if [ "$t" = "g77" -o "$t" = "gfortran" ] && [ ! -e ${D}${bindir}/${TARGET_PREFIX}$t ]; then
64 continue
65 fi
66
63 ln -sf ${bindir}/${TARGET_PREFIX}$t $dest$t 67 ln -sf ${bindir}/${TARGET_PREFIX}$t $dest$t
64 done 68 done
65 69