test-dependencies.sh: Redirect stderr

* newer bitbake is printing some messages to stderr, we want to log
  them as well

(From OE-Core rev: f442c15aaeb8c0641093e92f2b832dfaa2d9a486)

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Martin Jansa
2014-04-05 01:22:19 +02:00
committed by Richard Purdie
parent cb68ed9c47
commit 025021ee5c

View File

@@ -137,7 +137,7 @@ build_all() {
OUTPUT1=${OUTPUT_BASE}/${TYPE}_all
mkdir -p ${OUTPUT1}
echo "Logs will be stored in ${OUTPUT1} directory"
bitbake -k $targets | tee -a ${OUTPUT1}/complete.log
bitbake -k $targets 2>&1 | tee -a ${OUTPUT1}/complete.log
}
build_every_recipe() {