From 65d891bd2eaaa38b8f302f33fdf8eee3d39b67c0 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Mon, 25 Jul 2011 02:19:44 +0100 Subject: Fix for OE-core change to logging commands Fix for oenote -> bbnote, oefatal -> bbfatal etc. Signed-off-by: Paul Eggleton --- classes/qmake_base.bbclass | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'classes') diff --git a/classes/qmake_base.bbclass b/classes/qmake_base.bbclass index cc3297c..3f85a0a 100644 --- a/classes/qmake_base.bbclass +++ b/classes/qmake_base.bbclass @@ -56,7 +56,7 @@ qmake_base_do_configure() { die Unsupported target ${TARGET_OS} for oe-g++ qmake spec ;; *) - oenote Searching for qmake spec file + bbnote Searching for qmake spec file paths="${QMAKE_MKSPEC_PATH}/qws/${TARGET_OS}-${TARGET_ARCH}-g++" paths="${QMAKE_MKSPEC_PATH}/${TARGET_OS}-g++ $paths" @@ -72,7 +72,7 @@ qmake_base_do_configure() { ;; esac - oenote "using qmake spec in ${QMAKESPEC}, using profiles '${QMAKE_PROFILES}'" + bbnote "using qmake spec in ${QMAKESPEC}, using profiles '${QMAKE_PROFILES}'" if [ -z "${QMAKE_PROFILES}" ]; then PROFILES="`ls ${S}/*.pro`" @@ -87,15 +87,15 @@ qmake_base_do_configure() { if [ ! -z "${EXTRA_QMAKEVARS_POST}" ]; then AFTER="-after" QMAKE_VARSUBST_POST="${EXTRA_QMAKEVARS_POST}" - oenote "qmake postvar substitution: ${EXTRA_QMAKEVARS_POST}" + bbnote "qmake postvar substitution: ${EXTRA_QMAKEVARS_POST}" fi if [ ! -z "${EXTRA_QMAKEVARS_PRE}" ]; then QMAKE_VARSUBST_PRE="${EXTRA_QMAKEVARS_PRE}" - oenote "qmake prevar substitution: ${EXTRA_QMAKEVARS_PRE}" + bbnote "qmake prevar substitution: ${EXTRA_QMAKEVARS_PRE}" fi -#oenote "Calling '${OE_QMAKE_QMAKE} -makefile -spec ${QMAKESPEC} -o Makefile $QMAKE_VARSUBST_PRE $AFTER $PROFILES $QMAKE_VARSUBST_POST'" +#bbnote "Calling '${OE_QMAKE_QMAKE} -makefile -spec ${QMAKESPEC} -o Makefile $QMAKE_VARSUBST_PRE $AFTER $PROFILES $QMAKE_VARSUBST_POST'" unset QMAKESPEC || true ${OE_QMAKE_QMAKE} -makefile -spec ${QMAKESPEC} -o Makefile $QMAKE_VARSUBST_PRE $AFTER $PROFILES $QMAKE_VARSUBST_POST || die "Error calling ${OE_QMAKE_QMAKE} on $PROFILES" } -- cgit 1.2.3-korg