diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2011-06-20 19:04:13 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-23 21:08:03 +0100 |
commit | 879a7f819b7f38cda82d97489af433310aabfed1 (patch) | |
tree | 9a7c2e54736fa734e8b40fe9f96b63a39289d189 | |
parent | f955edf7aa9b943ff9f4fb2444b623c0ebe270f4 (diff) | |
download | poky-879a7f819b7f38cda82d97489af433310aabfed1.tar.gz |
python: Add python to the dependency to pygobject
pygobject requires both python and pygobject-native for compilation. Without
python pygobject may fail to compile.. and items that depend on pygobject will
fail to compile.
(From OE-Core rev: 319610d5bf61108f2ecc538c7a5de5b7c85a6684)
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/python/python-pygobject_2.27.91.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/python/python-pygobject_2.27.91.bb b/meta/recipes-devtools/python/python-pygobject_2.27.91.bb index 0160bbd6a1..9ff2fe7ddb 100644 --- a/meta/recipes-devtools/python/python-pygobject_2.27.91.bb +++ b/meta/recipes-devtools/python/python-pygobject_2.27.91.bb | |||
@@ -2,10 +2,10 @@ DESCRIPTION = "Python GObject bindings" | |||
2 | SECTION = "devel/python" | 2 | 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 | DEPENDS = "python-pygobject-native-${PV} glib-2.0" | 5 | DEPENDS = "python python-pygobject-native-${PV} glib-2.0" |
6 | DEPENDS_virtclass-native = "glib-2.0-native" | 6 | DEPENDS_virtclass-native = "glib-2.0-native" |
7 | RDEPENDS_virtclass-native = "" | 7 | RDEPENDS_virtclass-native = "" |
8 | PR = "r1" | 8 | PR = "r2" |
9 | 9 | ||
10 | MAJ_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}" | 10 | MAJ_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}" |
11 | 11 | ||