mirror of
https://git.yoctoproject.org/poky
synced 2026-04-04 23:02:22 +02:00
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>
This commit is contained in:
committed by
Richard Purdie
parent
8178e63649
commit
f2fb10ecf2
@@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=f2e071ab72978431b294a0d696327421 \
|
||||
|
||||
# cairo >= 1.8.8
|
||||
DEPENDS = "cairo"
|
||||
PR = "r0"
|
||||
PR = "r1"
|
||||
|
||||
SRC_URI = "http://cairographics.org/releases/py2cairo-${PV}.tar.bz2"
|
||||
|
||||
@@ -21,11 +21,11 @@ S = "${WORKDIR}/py2cairo-${PV}"
|
||||
inherit distutils pkgconfig
|
||||
|
||||
do_configure() {
|
||||
BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} ./waf configure --prefix=${D}${prefix}
|
||||
BUILD_SYS=${BUILD_SYS} HOST_SYS=${HOST_SYS} ./waf configure --prefix=${D}${prefix} --libdir=${D}${libdir}
|
||||
}
|
||||
|
||||
do_compile() {
|
||||
./waf build
|
||||
./waf build ${PARALLEL_MAKE}
|
||||
}
|
||||
|
||||
do_install() {
|
||||
|
||||
Reference in New Issue
Block a user