diff options
author | Ross Burton <ross.burton@intel.com> | 2016-03-22 20:53:51 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-25 10:29:16 +0000 |
commit | 7f7c9ab29eba0e58916629ca13dc4a494535ce19 (patch) | |
tree | 681f78e89f7daa1492bb04fd8610e32e560e30ee /meta | |
parent | e33124f828d0cd2dd600fff3f6ad3dc98d2723a1 (diff) | |
download | poky-7f7c9ab29eba0e58916629ca13dc4a494535ce19.tar.gz |
python-pygobject: use Python 2 instead of Python 3
Ideally this would be an option but that means conditional inherits. For now
Python 2 is clearly the default Python in oe-core so switch to Python 2 instead
of 3.
This stops python3 being pulled inadvertently into builds, and appearing in
images that have ptest-pkgs installed (via dbus-test).
(From OE-Core rev: 7ae7277a577b2732eff7812860a7c7967644e532)
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/python/python-pygobject_3.18.2.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-devtools/python/python-pygobject_3.18.2.bb b/meta/recipes-devtools/python/python-pygobject_3.18.2.bb index e61d75ca3e..8fe1d63423 100644 --- a/meta/recipes-devtools/python/python-pygobject_3.18.2.bb +++ b/meta/recipes-devtools/python/python-pygobject_3.18.2.bb | |||
@@ -3,9 +3,9 @@ SECTION = "devel/python" | |||
3 | LICENSE = "LGPLv2.1" | 3 | LICENSE = "LGPLv2.1" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7" |
5 | 5 | ||
6 | inherit autotools pkgconfig gnomebase distutils3-base gobject-introspection | 6 | inherit autotools pkgconfig gnomebase distutils-base gobject-introspection |
7 | 7 | ||
8 | DEPENDS += "python3 glib-2.0 gnome-common" | 8 | DEPENDS += "python glib-2.0 gnome-common" |
9 | 9 | ||
10 | SRCNAME="pygobject" | 10 | SRCNAME="pygobject" |
11 | SRC_URI = " \ | 11 | SRC_URI = " \ |
@@ -20,6 +20,6 @@ S = "${WORKDIR}/${SRCNAME}-${PV}" | |||
20 | 20 | ||
21 | BBCLASSEXTEND = "native" | 21 | BBCLASSEXTEND = "native" |
22 | 22 | ||
23 | EXTRA_OECONF = "--disable-cairo" | 23 | EXTRA_OECONF = "--disable-cairo --with-python=python2.7" |
24 | 24 | ||
25 | RDEPENDS_${PN} += "python3-setuptools" | 25 | RDEPENDS_${PN} += "python-setuptools" |