]> code.ossystems Code Review - openembedded-core.git/commitdiff
libgfortran: Add missing dependency gcc-cross
authorRicardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Mon, 3 Jul 2017 21:57:42 +0000 (23:57 +0200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 6 Jul 2017 13:38:08 +0000 (14:38 +0100)
Due to the fact that the recipe uses INHIBIT_DEFAULT_DEPS, we need to
manually add the cross compiler as a dependency.

Signed-off-by: Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-devtools/gcc/libgfortran.inc

index 4846decbb8347de58f4e9799e1fac4b875fbcb07..3b94c1b85b70e6c19e587b28d8dd7118eef3a596 100644 (file)
@@ -37,7 +37,7 @@ do_install () {
 }
 
 INHIBIT_DEFAULT_DEPS = "1"
-DEPENDS = "gcc-runtime"
+DEPENDS = "gcc-runtime gcc-cross-${TARGET_ARCH}"
 
 BBCLASSEXTEND = "nativesdk"