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 /meta/packages/python | |
parent | 0f4202fa201ecd69b26ec106a5329c57e4b238ad (diff) | |
download | poky-9b6287c7b166348dfaeb6fe39115c9f400da0f18.tar.gz |
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>
Diffstat (limited to 'meta/packages/python')
-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" | |||
2 | SECTION = "devel/python" | 2 | SECTION = "devel/python" |
3 | PRIORITY = "optional" | 3 | PRIORITY = "optional" |
4 | LICENSE = "LGPL" | 4 | LICENSE = "LGPL" |
5 | DEPENDS = "curl" | 5 | DEPENDS = "curl python" |
6 | SRCNAME = "pycurl" | 6 | SRCNAME = "pycurl" |
7 | PR = "r0" | 7 | PR = "r0" |
8 | 8 | ||
@@ -17,6 +17,8 @@ inherit distutils | |||
17 | # need to export these variables for python-config to work | 17 | # need to export these variables for python-config to work |
18 | export BUILD_SYS | 18 | export BUILD_SYS |
19 | export HOST_SYS | 19 | export HOST_SYS |
20 | export STAGING_INCDIR | ||
21 | export STAGING_LIBDIR | ||
20 | 22 | ||
21 | RDEPENDS = "python-core curl" | 23 | RDEPENDS = "python-core curl" |
22 | 24 | ||