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:01:49 +0100 |
commit | 319610d5bf61108f2ecc538c7a5de5b7c85a6684 (patch) | |
tree | 1e09425c25c837a215f82d18c6f89c12d8e76ca5 | |
parent | 2fd39cf62fc0a810aa57dcf12ef7f56bfa23866a (diff) | |
download | openembedded-core-319610d5bf61108f2ecc538c7a5de5b7c85a6684.tar.gz openembedded-core-319610d5bf61108f2ecc538c7a5de5b7c85a6684.tar.bz2 openembedded-core-319610d5bf61108f2ecc538c7a5de5b7c85a6684.zip |
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.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
-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" SECTION = "devel/python" LICENSE = "LGPLv2.1" LIC_FILES_CHKSUM = "file://COPYING;md5=a916467b91076e631dd8edb7424769c7" -DEPENDS = "python-pygobject-native-${PV} glib-2.0" +DEPENDS = "python python-pygobject-native-${PV} glib-2.0" DEPENDS_virtclass-native = "glib-2.0-native" RDEPENDS_virtclass-native = "" -PR = "r1" +PR = "r2" MAJ_VER = "${@bb.data.getVar('PV',d,1).split('.')[0]}.${@bb.data.getVar('PV',d,1).split('.')[1]}" |