summaryrefslogtreecommitdiffstats
path: root/meta/classes/populate_sdk.bbclass
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2012-06-18 16:42:45 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-07-03 14:54:57 +0100
commit9870fbc9f80f6c752e0d5cb73a118603b078f44f (patch)
treefac0d67506861f4f80c26c7efd88c1845467cfc0 /meta/classes/populate_sdk.bbclass
parentbd2d6016c067b9e406da78c45eaad463117ffb76 (diff)
downloadpoky-9870fbc9f80f6c752e0d5cb73a118603b078f44f.tar.gz
Fix manual log file paths
When a recent change, the path to log files may be contained within an arbitrary directory. To generate the manual log files in the correct path we should be using the ${BB_LOGFILE}'s path instead of always assuming the logs go into ${WORKDIR}/temp. (From OE-Core rev: 779db325d407f0bade84572ef99fdad4d0c88011) Signed-off-by: Mark Hatle <mark.hatle@windriver.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/populate_sdk.bbclass')
-rw-r--r--meta/classes/populate_sdk.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/populate_sdk.bbclass b/meta/classes/populate_sdk.bbclass
index 5aa8e92b87..1131d686b9 100644
--- a/meta/classes/populate_sdk.bbclass
+++ b/meta/classes/populate_sdk.bbclass
@@ -70,7 +70,7 @@ fakeroot do_populate_sdk() {
70populate_sdk_log_check() { 70populate_sdk_log_check() {
71 for target in $* 71 for target in $*
72 do 72 do
73 lf_path="${WORKDIR}/temp/log.do_$target.${PID}" 73 lf_path="`dirname ${BB_LOGFILE}`/log.do_$target.${PID}"
74 74
75 echo "log_check: Using $lf_path as logfile" 75 echo "log_check: Using $lf_path as logfile"
76 76