A misplaced '-' instead of '_' made bitbake conditional appending fail, resulting in fso-abyss being added unconditionally to runtime dependencies.
Signed-off-by: Antonio Ospite <[email protected]> --- The problem was in frameworkd-config, which was provided also by frameworkd-config-shr, so here we are. This one seems to be the correct fix for: http://bugs.openembedded.org/show_bug.cgi?id=5385 Please check also the English in the commit message, you never know :) Thanks, Antonio Ospite http://ao2.it frameworkd-config-shr: recipes/shr/frameworkd-config-shr_git.bb | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/recipes/shr/frameworkd-config-shr_git.bb b/recipes/shr/frameworkd-config-shr_git.bb index 3be7ceb..35c00de 100644 --- a/recipes/shr/frameworkd-config-shr_git.bb +++ b/recipes/shr/frameworkd-config-shr_git.bb @@ -66,7 +66,7 @@ PACKAGE_ARCH_${PN} = "${MACHINE_ARCH}" # - recommend MUXer on platforms that require one RDEPENDS_${PN}_append_om-gta01 = " fso-abyss" RDEPENDS_${PN}_append_om-gta02 = " fso-abyss" -RDEPENDS_${PN}_append-om-3d7k = " fso-abyss" +RDEPENDS_${PN}_append_om-3d7k = " fso-abyss" # - add wmiconfig for wireless configuration RDEPENDS_${PN}_append_om-gta02 = " wmiconfig" -- 1.7.0.3 _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
