diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2012-06-18 16:42:45 -0500 |
---|---|---|
committer | Saul Wold <sgw@linux.intel.com> | 2012-07-03 00:05:29 -0700 |
commit | 779db325d407f0bade84572ef99fdad4d0c88011 (patch) | |
tree | 450eecf920f161152d9a319372f28986b90bf13b /meta/classes/package_deb.bbclass | |
parent | 337428316de3612a8e1efa70b3a4ba7cb6e058d2 (diff) | |
download | openembedded-core-779db325d407f0bade84572ef99fdad4d0c88011.tar.gz openembedded-core-779db325d407f0bade84572ef99fdad4d0c88011.tar.bz2 openembedded-core-779db325d407f0bade84572ef99fdad4d0c88011.zip |
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.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Diffstat (limited to 'meta/classes/package_deb.bbclass')
-rw-r--r-- | meta/classes/package_deb.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/package_deb.bbclass b/meta/classes/package_deb.bbclass index 0a8dc1bd7e..f58fd2be02 100644 --- a/meta/classes/package_deb.bbclass +++ b/meta/classes/package_deb.bbclass @@ -167,10 +167,10 @@ package_install_internal_deb () { fi done - rm -f ${WORKDIR}/temp/log.do_${task}-attemptonly.${PID} + rm -f `dirname ${BB_LOGFILE}`/log.do_${task}-attemptonly.${PID} if [ ! -z "${package_attemptonly}" ]; then for i in ${package_attemptonly}; do - apt-get install $i --force-yes --allow-unauthenticated >> ${WORKDIR}/temp/log.do_${task}-attemptonly.${PID} 2>&1 || true + apt-get install $i --force-yes --allow-unauthenticated >> `dirname ${BB_LOGFILE}`/log.do_${task}-attemptonly.${PID} 2>&1 || true done fi |