From: Konrad Scherer <[email protected]> If the sed command does not run before make is invoked, the compile fails. Defining the environment variable is the proper way to disable warnings as errors build option and eliminates the race condition.
Signed-off-by: Konrad Scherer <[email protected]> Signed-off-by: Randy MacLeod <[email protected]> --- meta/recipes-kernel/perf/perf.bb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb index 138595d..1b889aa 100644 --- a/meta/recipes-kernel/perf/perf.bb +++ b/meta/recipes-kernel/perf/perf.bb @@ -40,6 +40,7 @@ export STAGING_INCDIR export STAGING_LIBDIR export BUILD_SYS export HOST_SYS +export WERROR = "0" do_populate_lic[depends] += "virtual/kernel:do_populate_sysroot" @@ -118,10 +119,6 @@ do_install() { fi } -do_configure_prepend () { - sed -i 's,-Werror ,,' ${S}/tools/perf/Makefile -} - python do_package_prepend() { bb.data.setVar('PKGV', get_kernelversion('${S}').split("-")[0], d) } -- 1.8.1.2.545.g2f19ada _______________________________________________ Openembedded-core mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-core
