python-pip: add python-distribute in RDEPENDS

Fix the following runtime issue of pip:
    # pip
    Traceback (most recent call last):
      File "/usr/bin/pip", line 5, in <module>
        from pkg_resources import load_entry_point
    ImportError: No module named pkg_resources

Signed-off-by: Zhenhua Luo <zhenhua.luo@freescale.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
Zhenhua Luo 2015-02-10 14:55:10 +08:00 committed by Armin Kuster
parent fe54ee0ef2
commit 66ca394c5b

View File

@ -11,4 +11,4 @@ S = "${WORKDIR}/pip-${PV}"
inherit setuptools inherit setuptools
# Since PIP is like CPAN for PERL we need to drag in all python modules to ensure everything works # Since PIP is like CPAN for PERL we need to drag in all python modules to ensure everything works
RDEPENDS_${PN} = "python-modules" RDEPENDS_${PN} = "python-modules python-distribute"