diff options
author | Ricardo Ribalda Delgado <ricardo.ribalda@gmail.com> | 2017-07-03 23:57:42 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-07-06 14:38:08 +0100 |
commit | 00fba52c8a6f6383137cf89fc7aa34cc3e2ff45f (patch) | |
tree | 2fd25c5bdd442341405ddb1f7385bf99563fdb40 /meta/recipes-devtools/gcc | |
parent | 7e562e24ed295a36f3d909f57cef017faf73f093 (diff) | |
download | openembedded-core-00fba52c8a6f6383137cf89fc7aa34cc3e2ff45f.tar.gz openembedded-core-00fba52c8a6f6383137cf89fc7aa34cc3e2ff45f.tar.bz2 openembedded-core-00fba52c8a6f6383137cf89fc7aa34cc3e2ff45f.zip |
libgfortran: Add missing dependency gcc-cross
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>
Diffstat (limited to 'meta/recipes-devtools/gcc')
-rw-r--r-- | meta/recipes-devtools/gcc/libgfortran.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gcc/libgfortran.inc b/meta/recipes-devtools/gcc/libgfortran.inc index 4846decbb8..3b94c1b85b 100644 --- a/meta/recipes-devtools/gcc/libgfortran.inc +++ b/meta/recipes-devtools/gcc/libgfortran.inc @@ -37,7 +37,7 @@ do_install () { } INHIBIT_DEFAULT_DEPS = "1" -DEPENDS = "gcc-runtime" +DEPENDS = "gcc-runtime gcc-cross-${TARGET_ARCH}" BBCLASSEXTEND = "nativesdk" |