diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2014-04-05 01:22:19 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-04-05 23:24:01 +0100 |
commit | 025021ee5c59c9794c35fc2a4f8397b1a17e7354 (patch) | |
tree | ac950ef2e6de770ab4ed7ccb45a10f5b1a6cfbb4 /scripts/test-dependencies.sh | |
parent | cb68ed9c4708a575a39ffd9351624321ea14d1e5 (diff) | |
download | poky-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/test-dependencies.sh')
-rwxr-xr-x | scripts/test-dependencies.sh | 2 |
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 | ||
143 | build_every_recipe() { | 143 | build_every_recipe() { |