From 989f3e8457f2144529ba2cd9807d4e8f29a77c40 Mon Sep 17 00:00:00 2001 From: Christopher Larson Date: Mon, 30 Jan 2017 09:11:13 -0700 Subject: [PATCH] gcc-runtime-external: fix COMPILERDEP parse error We don't need or want this dep, so set it to the empty string rather than including gcc-common.inc. This fixes builds with current upstream master. Signed-off-by: Christopher Larson --- recipes-external/gcc/gcc-runtime-external.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/recipes-external/gcc/gcc-runtime-external.bb b/recipes-external/gcc/gcc-runtime-external.bb index af9a6e9..6252a96 100644 --- a/recipes-external/gcc/gcc-runtime-external.bb +++ b/recipes-external/gcc/gcc-runtime-external.bb @@ -8,6 +8,8 @@ inherit external-toolchain # GCC >4.2 is GPLv3 DEPENDS = "libgcc" EXTRA_OECONF = "" +COMPILERDEP = "" + python () { lic_deps = d.getVarFlag('do_populate_lic', 'depends', False) d.setVarFlag('do_populate_lic', 'depends', lic_deps.replace('gcc-source-${PV}:do_unpack', ''))