diff options
| author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2012-01-04 12:32:17 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-06 12:11:34 +0000 |
| commit | f2fb10ecf23ada1c37a973b5a504b46f9b5b9269 (patch) | |
| tree | a017ce47483d4ab5b0c9af9df6526d305fcee6d9 | |
| parent | 8178e636490c73b1f7c88ef128a3300868ac9ca6 (diff) | |
| download | poky-f2fb10ecf23ada1c37a973b5a504b46f9b5b9269.tar.gz | |
python-pycairo: fix for x32
Add the libdir to configure so that path like /usr/libx32 can work.
Also passing parallel make flags to the building process.
(From OE-Core rev: 2f134791ca5db0281af0a71fcab0e832894d412c)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-devtools/python/python-pycairo_1.10.0.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-devtools/python/python-pycairo_1.10.0.bb b/meta/recipes-devtools/python/python-pycairo_1.10.0.bb index 812acfb3fd..7d1b6c1261 100644 --- a/meta/recipes-devtools/python/python-pycairo_1.10.0.bb +++ b/meta/recipes-devtools/python/python-pycairo_1.10.0.bb | |||
| @@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=f2e071ab72978431b294a0d696327421 \ | |||
| 9 | 9 | ||
| 10 | # cairo >= 1.8.8 | 10 | # cairo >= 1.8.8 |
| 11 | DEPENDS = "cairo" | 11 | DEPENDS = "cairo" |
| 12 | PR = "r0" | 12 | PR = "r1" |
| 13 | 13 | ||
| 14 | SRC_URI = "http://cairographics.org/releases/py2cairo-${PV}.tar.bz2" | 14 | SRC_URI = "http://cairographics.org/releases/py2cairo-${PV}.tar.bz2" |
| 15 | 15 | ||
| @@ -21,11 +21,11 @@ S = "${WORKDIR}/py2cairo-${PV}" | |||
| 21 | inherit distutils pkgconfig | 21 | inherit distutils pkgconfig |
| 22 | 22 | ||
| 23 | do_configure() { | 23 | do_configure() { |
| 24 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} ./waf configure --prefix=${D}${prefix} | 24 | BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} ./waf configure --prefix=${D}${prefix} --libdir=${D}${libdir} |
| 25 | } | 25 | } |
| 26 | 26 | ||
| 27 | do_compile() { | 27 | do_compile() { |
| 28 | ./waf build | 28 | ./waf build ${PARALLEL_MAKE} |
| 29 | } | 29 | } |
| 30 | 30 | ||
| 31 | do_install() { | 31 | do_install() { |
