[oe-commits] [openembedded-core] 03/03: oeqa/runtime/utils/targetbuildproject: use parent classes defaults tmpdir

git at git.openembedded.org git at git.openembedded.org
Thu Apr 6 09:14:54 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 901659a51cd53625a93f57a9c5865e90a07ec09d
Author: Joshua Lock <joshua.g.lock at intel.com>
AuthorDate: Wed Apr 5 13:10:55 2017 +0100

    oeqa/runtime/utils/targetbuildproject: use parent classes defaults tmpdir
    
    Rather than hard-coding the tmpdir for TargetBuildProject to /tmp allow the
    parent's default handling to define an appropriate tmpdir.
    
    Signed-off-by: Joshua Lock <joshua.g.lock at intel.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/lib/oeqa/runtime/utils/targetbuildproject.py | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/meta/lib/oeqa/runtime/utils/targetbuildproject.py b/meta/lib/oeqa/runtime/utils/targetbuildproject.py
index 551b0b6..5af55d7 100644
--- a/meta/lib/oeqa/runtime/utils/targetbuildproject.py
+++ b/meta/lib/oeqa/runtime/utils/targetbuildproject.py
@@ -8,8 +8,7 @@ class TargetBuildProject(BuildProject):
     def __init__(self, target, uri, foldername=None, dl_dir=None):
         self.target = target
         self.targetdir = "~/"
-        BuildProject.__init__(self, uri, foldername, tmpdir="/tmp",
-                dl_dir=dl_dir)
+        BuildProject.__init__(self, uri, foldername, dl_dir=dl_dir)
 
     def download_archive(self):
         self._download_archive()

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list