diff options
| author | Nathan Rossi <nathan.rossi@xilinx.com> | 2013-08-16 15:42:49 +1000 |
|---|---|---|
| committer | Nathan Rossi <nathan.rossi@xilinx.com> | 2013-09-20 17:26:07 +1000 |
| commit | 4204ea87969a5f7e000abd0d91a56d8e6db2ac61 (patch) | |
| tree | bf354c07bb0cb34c77a7468b0da08148ca337458 | |
| parent | 91e72ddc10d3b8452271f056009cafd8162fb061 (diff) | |
| download | meta-xilinx-4204ea87969a5f7e000abd0d91a56d8e6db2ac61.tar.gz | |
libffi: Updated to use 3.0.13
* Updated to use 3.0.13 version
* Fixed issue with host lib paths (on certain 64-bit hosts, namely RHEL)
* Update the MD5 and SHA256 hashes for tarball
Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com>
| -rw-r--r-- | recipes-gnome/libffi/libffi_3.0.13.bb (renamed from recipes-gnome/libffi/libffi_3.0.12.bb) | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/recipes-gnome/libffi/libffi_3.0.12.bb b/recipes-gnome/libffi/libffi_3.0.13.bb index 2c14e583..2bf74015 100644 --- a/recipes-gnome/libffi/libffi_3.0.12.bb +++ b/recipes-gnome/libffi/libffi_3.0.13.bb | |||
| @@ -13,8 +13,8 @@ PR = "r0" | |||
| 13 | 13 | ||
| 14 | SRC_URI = "ftp://sourceware.org/pub/libffi/${BPN}-${PV}.tar.gz" | 14 | SRC_URI = "ftp://sourceware.org/pub/libffi/${BPN}-${PV}.tar.gz" |
| 15 | 15 | ||
| 16 | SRC_URI[md5sum] = "da984c6756170d50f47925bb333cda71" | 16 | SRC_URI[md5sum] = "45f3b6dbc9ee7c7dfbbbc5feba571529" |
| 17 | SRC_URI[sha256sum] = "2ea0db90c2bbcc907c3aefc3f76e9dfc3b35c7a0fb75a4319f5248e0172c1e9e" | 17 | SRC_URI[sha256sum] = "1dddde1400c3bcb7749d398071af88c3e4754058d2d4c0b3696c2f82dc5cf11c" |
| 18 | 18 | ||
| 19 | EXTRA_OECONF += "--disable-builddir" | 19 | EXTRA_OECONF += "--disable-builddir" |
| 20 | 20 | ||
| @@ -23,3 +23,11 @@ inherit autotools | |||
| 23 | FILES_${PN}-dev += "${libdir}/libffi-${PV}" | 23 | FILES_${PN}-dev += "${libdir}/libffi-${PV}" |
| 24 | 24 | ||
| 25 | BBCLASSEXTEND = "native nativesdk" | 25 | BBCLASSEXTEND = "native nativesdk" |
| 26 | |||
| 27 | do_install_append() { | ||
| 28 | # Move the lib64/* into lib/ (this is to fix issues where the host system is 64-bit and uses lib64) | ||
| 29 | if [ -e "${D}${libdir}64" ]; then | ||
| 30 | mkdir -p ${D}${libdir} | ||
| 31 | mv ${D}${libdir}64/* ${D}${libdir} | ||
| 32 | fi | ||
| 33 | } | ||
