diff options
author | Darren Hart <dvhart@linux.intel.com> | 2011-04-28 21:49:31 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-04 00:49:33 +0100 |
commit | a1f09fce5caba389d0484b169f0cde85d64514fa (patch) | |
tree | 53464597ac08390625583a4ba47a9ae637405b04 /meta/classes/sip.bbclass | |
parent | 123a7f49753aef4d5ccb5f5a5590c3c88775c6d0 (diff) | |
download | openembedded-core-a1f09fce5caba389d0484b169f0cde85d64514fa.tar.gz openembedded-core-a1f09fce5caba389d0484b169f0cde85d64514fa.tar.bz2 openembedded-core-a1f09fce5caba389d0484b169f0cde85d64514fa.zip |
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 <dvhart@linux.intel.com>
Diffstat (limited to 'meta/classes/sip.bbclass')
-rw-r--r-- | meta/classes/sip.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/sip.bbclass b/meta/classes/sip.bbclass index a258fda629..de0e2effb1 100644 --- a/meta/classes/sip.bbclass +++ b/meta/classes/sip.bbclass @@ -17,7 +17,7 @@ sip_do_generate() { if [ -z "$MODULES" ]; then die "SIP_MODULES not set and no modules found in $PWD" else - oenote "using modules '${SIP_MODULES}' and tags '${EXTRA_SIPTAGS}'" + bbnote "using modules '${SIP_MODULES}' and tags '${EXTRA_SIPTAGS}'" fi if [ -z "${EXTRA_SIPTAGS}" ]; then @@ -28,7 +28,7 @@ sip_do_generate() { if [ ! -z "${SIP_FEATURES}" ]; then FEATURES="-z ${SIP_FEATURES}" - oenote "sip feature file: ${SIP_FEATURES}" + bbnote "sip feature file: ${SIP_FEATURES}" fi for module in $MODULES |