The new logging.bbclass replaces the oe* logging functions with bb* equivalents.
There are no longer any users of the oe* API within oe-core. Remove the oe*
functions.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
addhandler sys_path_eh
die() {
- oefatal "$*"
-}
-
-oenote() {
- echo "NOTE:" "$*"
-}
-
-oewarn() {
- echo "WARNING:" "$*"
-}
-
-oefatal() {
- echo "FATAL:" "$*"
- exit 1
-}
-
-oedebug() {
- if [ $# -lt 2]; then
- echo "Usage: oedebug level \"message\""
- exit 1
- fi
-
- if [ ${OEDEBUG:-0} -ge $1 ]; then
- shift
- echo "DEBUG:" $*
- fi
+ bbfatal "$*"
}
oe_runmake() {