From: Richard Purdie Date: Tue, 19 Mar 2013 13:22:59 +0000 (+0000) Subject: perf: Fix parsing error X-Git-Tag: 2015-4~7149 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=053ca014e7eb8c9dd05cef42fe23f463f3eb15dd;p=openembedded-core.git perf: Fix parsing error Due to the use of ${@...} the code will try and expand this when performing the initial parsing. If the sysroot doesn't exist with an existing kernel, this will fail at parsing time. Sinec we're already in python, just remove the ${@....} wrapping and then we execute at do_package time which is what we want. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb index 182dd25d6e..210c4cbf65 100644 --- a/meta/recipes-kernel/perf/perf.bb +++ b/meta/recipes-kernel/perf/perf.bb @@ -105,7 +105,7 @@ do_configure_prepend () { } python do_package_prepend() { - bb.data.setVar('PKGV', '${@get_kernelversion('${S}').split("-")[0]}', d) + bb.data.setVar('PKGV', get_kernelversion('${S}').split("-")[0], d) } PACKAGE_ARCH = "${MACHINE_ARCH}"