When the existing test for loglevel fails, the syntax used results in the recipe
exiting with a silent failure. Performing any bash command after the test block
resolves the problem, such as "shift" or "echo ''". Rewriting with 'if []; then'
blocks provides a cleaner syntax and also resolves the failure.
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
}
oedebug() {
- test $# -ge 2 || {
+ if [ $# -lt 2]; then
echo "Usage: oedebug level \"message\""
exit 1
- }
+ fi
- test ${OEDEBUG:-0} -ge $1 && {
+ if [ ${OEDEBUG:-0} -ge $1 ]; then
shift
echo "DEBUG:" $*
- }
+ fi
}
oe_runmake() {