From: Joshua Lock Date: Tue, 30 Mar 2010 14:24:25 +0000 (+0100) Subject: python-pycurl: Fix building X-Git-Tag: 2011-1~6044 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=9b6287c7b166348dfaeb6fe39115c9f400da0f18;p=openembedded-core.git python-pycurl: Fix building Add python to DEPENDS and ensure the required environment variables are available at build time. Signed-off-by: Joshua Lock --- diff --git a/meta/packages/python/python-pycurl_7.19.0.bb b/meta/packages/python/python-pycurl_7.19.0.bb index 84b01dc50f..2b0bd88ce1 100644 --- a/meta/packages/python/python-pycurl_7.19.0.bb +++ b/meta/packages/python/python-pycurl_7.19.0.bb @@ -2,7 +2,7 @@ DESCRIPTION = "libcurl Python Bindings" SECTION = "devel/python" PRIORITY = "optional" LICENSE = "LGPL" -DEPENDS = "curl" +DEPENDS = "curl python" SRCNAME = "pycurl" PR = "r0" @@ -17,6 +17,8 @@ inherit distutils # need to export these variables for python-config to work export BUILD_SYS export HOST_SYS +export STAGING_INCDIR +export STAGING_LIBDIR RDEPENDS = "python-core curl"