From a1f09fce5caba389d0484b169f0cde85d64514fa Mon Sep 17 00:00:00 2001 From: Darren Hart Date: Thu, 28 Apr 2011 21:49:31 -0700 Subject: logging: update existing oe* logging users to the bb* interface The new bash logging class provides bbnote, bbwarn, bbfatal, and bbdebug replacements (as well as bbplain and bberror) for the oe* equivalents. Use the new bb* API in preparation to delete the oe* logging API. This patch was automatically generated by a sed script. The result has been visually inspected and used to build core-image-sato for qemux86. Signed-off-by: Darren Hart --- meta/classes/scons.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta/classes/scons.bbclass') diff --git a/meta/classes/scons.bbclass b/meta/classes/scons.bbclass index 534b3bd4c7..211746fd0f 100644 --- a/meta/classes/scons.bbclass +++ b/meta/classes/scons.bbclass @@ -2,12 +2,12 @@ DEPENDS += "python-scons-native" scons_do_compile() { ${STAGING_BINDIR_NATIVE}/scons PREFIX=${prefix} prefix=${prefix} || \ - oefatal "scons build execution failed." + bbfatal "scons build execution failed." } scons_do_install() { ${STAGING_BINDIR_NATIVE}/scons PREFIX=${D}${prefix} prefix=${D}${prefix} install || \ - oefatal "scons install execution failed." + bbfatal "scons install execution failed." } EXPORT_FUNCTIONS do_compile do_install -- cgit 1.2.3-korg