summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2014-04-05 01:22:19 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-04-05 23:24:01 +0100
commit025021ee5c59c9794c35fc2a4f8397b1a17e7354 (patch)
treeac950ef2e6de770ab4ed7ccb45a10f5b1a6cfbb4 /scripts
parentcb68ed9c4708a575a39ffd9351624321ea14d1e5 (diff)
downloadpoky-025021ee5c59c9794c35fc2a4f8397b1a17e7354.tar.gz
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>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/test-dependencies.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test-dependencies.sh b/scripts/test-dependencies.sh
index ca7e687a32..d3212c4f49 100755
--- a/scripts/test-dependencies.sh
+++ b/scripts/test-dependencies.sh
@@ -137,7 +137,7 @@ build_all() {
137 OUTPUT1=${OUTPUT_BASE}/${TYPE}_all 137 OUTPUT1=${OUTPUT_BASE}/${TYPE}_all
138 mkdir -p ${OUTPUT1} 138 mkdir -p ${OUTPUT1}
139 echo "Logs will be stored in ${OUTPUT1} directory" 139 echo "Logs will be stored in ${OUTPUT1} directory"
140 bitbake -k $targets | tee -a ${OUTPUT1}/complete.log 140 bitbake -k $targets 2>&1 | tee -a ${OUTPUT1}/complete.log
141} 141}
142 142
143build_every_recipe() { 143build_every_recipe() {