diff options
author | Joshua Lock <josh@linux.intel.com> | 2010-03-30 15:24:25 +0100 |
---|---|---|
committer | Joshua Lock <josh@linux.intel.com> | 2010-03-31 14:50:50 +0100 |
commit | 9b6287c7b166348dfaeb6fe39115c9f400da0f18 (patch) | |
tree | a0ddd4e9a85ed665e077714a0a41fff77fa1086c | |
parent | 0f4202fa201ecd69b26ec106a5329c57e4b238ad (diff) | |
download | openembedded-core-9b6287c7b166348dfaeb6fe39115c9f400da0f18.tar.gz openembedded-core-9b6287c7b166348dfaeb6fe39115c9f400da0f18.tar.bz2 openembedded-core-9b6287c7b166348dfaeb6fe39115c9f400da0f18.zip |
python-pycurl: Fix building
Add python to DEPENDS and ensure the required environment variables are
available at build time.
Signed-off-by: Joshua Lock <josh@linux.intel.com>
-rw-r--r-- | meta/packages/python/python-pycurl_7.19.0.bb | 4 |
1 files changed, 3 insertions, 1 deletions
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" |