[OE-core] [PATCH 1/2] gcc-cross-canadian: do not create symlinks to non-existent binaries
Laurentiu Palcu
laurentiu.palcu at intel.com
Fri Mar 15 16:01:52 UTC 2013
If fortran is not built, soft links to gfortran and g77 are created
even though the fortran compiler doesn't exist...
[YOCTO #4023]
Signed-off-by: Laurentiu Palcu <laurentiu.palcu at intel.com>
---
meta/recipes-devtools/gcc/gcc-package-sdk.inc | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/meta/recipes-devtools/gcc/gcc-package-sdk.inc b/meta/recipes-devtools/gcc/gcc-package-sdk.inc
index f32e95f..bb6dfde 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 () {
dest=${D}${libexecdir}/gcc/${TARGET_SYS}/${BINV}/
install -d $dest
for t in ar as ld nm objcopy objdump ranlib strip g77 gcc cpp gfortran; do
+ if [ "$t" = "g77" -o "$t" = "gfortran" ] && [ ! -e ${D}${bindir}/${TARGET_PREFIX}$t ]; then
+ continue
+ fi
+
ln -sf ${bindir}/${TARGET_PREFIX}$t $dest$t
done
--
1.7.9.5
More information about the Openembedded-core
mailing list