diff options
Diffstat (limited to 'meta/lib/oeqa/runtime/utils')
-rw-r--r-- | meta/lib/oeqa/runtime/utils/targetbuildproject.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oeqa/runtime/utils/targetbuildproject.py b/meta/lib/oeqa/runtime/utils/targetbuildproject.py index 138b5ef041..006d4d4a7b 100644 --- a/meta/lib/oeqa/runtime/utils/targetbuildproject.py +++ b/meta/lib/oeqa/runtime/utils/targetbuildproject.py | |||
@@ -5,13 +5,13 @@ from oeqa.utils.buildproject import BuildProject | |||
5 | 5 | ||
6 | class TargetBuildProject(BuildProject): | 6 | class TargetBuildProject(BuildProject): |
7 | 7 | ||
8 | def __init__(self, target, d, uri, foldername=None): | 8 | def __init__(self, target, uri, foldername=None, dl_dir=None): |
9 | self.target = target | 9 | self.target = target |
10 | self.targetdir = "~/" | 10 | self.targetdir = "~/" |
11 | BuildProject.__init__(self, d, uri, foldername, tmpdir="/tmp") | 11 | BuildProject.__init__(self, uri, foldername, tmpdir="/tmp", |
12 | dl_dir=dl_dir) | ||
12 | 13 | ||
13 | def download_archive(self): | 14 | def download_archive(self): |
14 | |||
15 | self._download_archive() | 15 | self._download_archive() |
16 | 16 | ||
17 | (status, output) = self.target.copy_to(self.localarchive, self.targetdir) | 17 | (status, output) = self.target.copy_to(self.localarchive, self.targetdir) |