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/base.bbclass | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta/classes/base.bbclass') diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 540931f17..0a7f1d136 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -67,7 +67,7 @@ oedebug() { oe_runmake() { if [ x"$MAKE" = x ]; then MAKE=make; fi - oenote ${MAKE} ${EXTRA_OEMAKE} "$@" + bbnote ${MAKE} ${EXTRA_OEMAKE} "$@" ${MAKE} ${EXTRA_OEMAKE} "$@" || die "oe_runmake failed" } @@ -231,7 +231,7 @@ base_do_compile() { if [ -e Makefile -o -e makefile ]; then oe_runmake || die "make failed" else - oenote "nothing to compile" + bbnote "nothing to compile" fi } -- cgit v1.2.3