]> code.ossystems Code Review - openembedded-core.git/commitdiff
python: Add python to the dependency to pygobject
authorMark Hatle <mark.hatle@windriver.com>
Tue, 21 Jun 2011 00:04:13 +0000 (19:04 -0500)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 23 Jun 2011 20:01:49 +0000 (21:01 +0100)
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>
meta/recipes-devtools/python/python-pygobject_2.27.91.bb

index 0160bbd6a1bdd55dfa3a8cf3a0ad6df81d92bf78..9ff2fe7ddb5e3158ee6bb30bb1645ec04ef2f6a0 100644 (file)
@@ -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]}"