aboutsummaryrefslogtreecommitdiffstats
path: root/rrs/tools/rrs_distros.py
diff options
context:
space:
mode:
authorAníbal Limón <anibal.limon@linux.intel.com>2016-03-28 11:25:18 -0600
committerPaul Eggleton <paul.eggleton@linux.intel.com>2018-05-04 23:57:52 +1200
commit0a5781ae07f2cf0ead49a5676a594e34cbca30a1 (patch)
tree71eb2267402fd483010b1f4bf7ada4f2798b2f8a /rrs/tools/rrs_distros.py
parent86d77504f29775fc664b6d109f371cdc61fafb5a (diff)
downloadopenembedded-core-contrib-0a5781ae07f2cf0ead49a5676a594e34cbca30a1.tar.gz
tools/rrs_distros.py: Fix distro_check.create_distro_packages_list call
Now create_distro_packages_list requires d to be passed, this change was done to enable proxy support into create_distro_packages_list function. Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
Diffstat (limited to 'rrs/tools/rrs_distros.py')
-rwxr-xr-xrrs/tools/rrs_distros.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/rrs/tools/rrs_distros.py b/rrs/tools/rrs_distros.py
index 9dd564afa5..46c1058b9f 100755
--- a/rrs/tools/rrs_distros.py
+++ b/rrs/tools/rrs_distros.py
@@ -106,7 +106,7 @@ if __name__=="__main__":
from oe import distro_check
logger.debug("Downloading distro's package information ...")
- distro_check.create_distro_packages_list(fetchdir)
+ distro_check.create_distro_packages_list(fetchdir, d)
pkglst_dir = os.path.join(fetchdir, "package_lists")
RecipeDistro.objects.filter(recipe__layerbranch = layerbranch).delete()