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:56 +0000 |
commit | 6d0f1d30d45ed28291d124682bd71eaa92ea79a2 (patch) | |
tree | 472aa360cd7c75125975fb3e281fe286606d473a /meta/lib/oeqa/runtime/buildiptables.py | |
parent | 2bdc00fe74cc3f2b7daf43c9109e0727764b0a38 (diff) | |
download | poky-6d0f1d30d45ed28291d124682bd71eaa92ea79a2.tar.gz |
oeqa/utils: targetbuild: take proxy into account
A previous commit broke downloads
when proxies are involved, let's fix it.
(From OE-Core rev: 97e263b99cbe8184a74f80738fd471cfdef29e0c)
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/buildiptables.py')
-rw-r--r-- | meta/lib/oeqa/runtime/buildiptables.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/buildiptables.py b/meta/lib/oeqa/runtime/buildiptables.py index 50faf5d775..f6061a7f98 100644 --- a/meta/lib/oeqa/runtime/buildiptables.py +++ b/meta/lib/oeqa/runtime/buildiptables.py | |||
@@ -10,7 +10,7 @@ class BuildIptablesTest(oeRuntimeTest): | |||
10 | 10 | ||
11 | @classmethod | 11 | @classmethod |
12 | def setUpClass(self): | 12 | def setUpClass(self): |
13 | self.project = TargetBuildProject(oeRuntimeTest.tc.target, | 13 | self.project = TargetBuildProject(oeRuntimeTest.tc.target, oeRuntimeTest.tc.d, |
14 | "http://netfilter.org/projects/iptables/files/iptables-1.4.13.tar.bz2") | 14 | "http://netfilter.org/projects/iptables/files/iptables-1.4.13.tar.bz2") |
15 | self.project.download_archive() | 15 | self.project.download_archive() |
16 | 16 | ||