diff options
author | Stefan Stanacar <stefanx.stanacar@intel.com> | 2014-02-09 12:39:30 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-02-11 11:56:22 +0000 |
commit | 97e263b99cbe8184a74f80738fd471cfdef29e0c (patch) | |
tree | 7503e4f5dcb10ce73ca1fdb45143c835e98ebf17 /meta/lib/oeqa/runtime/buildcvs.py | |
parent | 9b75f6a5786ff7b2e6219d78b38f0032f100c660 (diff) | |
download | openembedded-core-97e263b99cbe8184a74f80738fd471cfdef29e0c.tar.gz openembedded-core-97e263b99cbe8184a74f80738fd471cfdef29e0c.tar.bz2 openembedded-core-97e263b99cbe8184a74f80738fd471cfdef29e0c.zip |
oeqa/utils: targetbuild: take proxy into account
A previous commit broke downloads
when proxies are involved, let's fix it.
Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/runtime/buildcvs.py')
-rw-r--r-- | meta/lib/oeqa/runtime/buildcvs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/buildcvs.py b/meta/lib/oeqa/runtime/buildcvs.py index 9bf764d00f..f1fbf19c1f 100644 --- a/meta/lib/oeqa/runtime/buildcvs.py +++ b/meta/lib/oeqa/runtime/buildcvs.py @@ -10,7 +10,7 @@ class BuildCvsTest(oeRuntimeTest): @classmethod def setUpClass(self): - self.project = TargetBuildProject(oeRuntimeTest.tc.target, + self.project = TargetBuildProject(oeRuntimeTest.tc.target, oeRuntimeTest.tc.d, "http://ftp.gnu.org/non-gnu/cvs/source/feature/1.12.13/cvs-1.12.13.tar.bz2") self.project.download_archive() |