summaryrefslogtreecommitdiffstats
path: root/meta/classes/sip.bbclass
diff options
context:
space:
mode:
authorDarren Hart <dvhart@linux.intel.com>2011-04-28 21:49:31 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-05-04 00:54:37 +0100
commitfc934af7c843a899f41d43fdb239d255da777903 (patch)
treeb3a9391af053141103455de4661f059e91bea035 /meta/classes/sip.bbclass
parent0e2eb05f46192e179912160cc557f274148dcf15 (diff)
downloadpoky-fc934af7c843a899f41d43fdb239d255da777903.tar.gz
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. (From OE-Core rev: a1f09fce5caba389d0484b169f0cde85d64514fa) Signed-off-by: Darren Hart <dvhart@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/sip.bbclass')
-rw-r--r--meta/classes/sip.bbclass4
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() {
17 if [ -z "$MODULES" ]; then 17 if [ -z "$MODULES" ]; then
18 die "SIP_MODULES not set and no modules found in $PWD" 18 die "SIP_MODULES not set and no modules found in $PWD"
19 else 19 else
20 oenote "using modules '${SIP_MODULES}' and tags '${EXTRA_SIPTAGS}'" 20 bbnote "using modules '${SIP_MODULES}' and tags '${EXTRA_SIPTAGS}'"
21 fi 21 fi
22 22
23 if [ -z "${EXTRA_SIPTAGS}" ]; then 23 if [ -z "${EXTRA_SIPTAGS}" ]; then
@@ -28,7 +28,7 @@ sip_do_generate() {
28 28
29 if [ ! -z "${SIP_FEATURES}" ]; then 29 if [ ! -z "${SIP_FEATURES}" ]; then
30 FEATURES="-z ${SIP_FEATURES}" 30 FEATURES="-z ${SIP_FEATURES}"
31 oenote "sip feature file: ${SIP_FEATURES}" 31 bbnote "sip feature file: ${SIP_FEATURES}"
32 fi 32 fi
33 33
34 for module in $MODULES 34 for module in $MODULES