diff options
Diffstat (limited to 'meta/lib/oeqa/sdk/utils/sdkbuildproject.py')
| -rw-r--r-- | meta/lib/oeqa/sdk/utils/sdkbuildproject.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta/lib/oeqa/sdk/utils/sdkbuildproject.py b/meta/lib/oeqa/sdk/utils/sdkbuildproject.py index 0519911e8f..6fed73e350 100644 --- a/meta/lib/oeqa/sdk/utils/sdkbuildproject.py +++ b/meta/lib/oeqa/sdk/utils/sdkbuildproject.py | |||
| @@ -20,10 +20,9 @@ class SDKBuildProject(BuildProject): | |||
| 20 | BuildProject.__init__(self, uri, foldername, tmpdir=testpath, dl_dir=dl_dir) | 20 | BuildProject.__init__(self, uri, foldername, tmpdir=testpath, dl_dir=dl_dir) |
| 21 | 21 | ||
| 22 | def download_archive(self): | 22 | def download_archive(self): |
| 23 | |||
| 24 | self._download_archive() | 23 | self._download_archive() |
| 25 | 24 | ||
| 26 | cmd = 'tar xf %s%s -C %s' % (self.targetdir, self.archive, self.targetdir) | 25 | cmd = 'tar xf %s -C %s' % (os.path.join(self.targetdir, self.archive), self.targetdir) |
| 27 | subprocess.check_output(cmd, shell=True) | 26 | subprocess.check_output(cmd, shell=True) |
| 28 | 27 | ||
| 29 | #Change targetdir to project folder | 28 | #Change targetdir to project folder |
