diff options
author | Khem Raj <raj.khem@gmail.com> | 2013-05-28 01:22:51 +0000 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2013-06-03 14:32:02 +0200 |
commit | 048d3b430def551d603c0390c1b8ef5f4feb51a5 (patch) | |
tree | 1dc2af0bfaf79f1879eb1d2d9fb3ed89a13ce547 /meta-oe/recipes-devtools/luajit/luajit_2.0.1.bb | |
parent | 675289a6f542c8b0766e72aff92849de012b652b (diff) | |
download | meta-openembedded-048d3b430def551d603c0390c1b8ef5f4feb51a5.tar.gz |
luajit: Fix ppc spe issue with PIC code
some parts of libluajit is not compiled with PICness
lets fix it.
Also get the hotfix patch for luajit dot org
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/luajit/luajit_2.0.1.bb')
-rw-r--r-- | meta-oe/recipes-devtools/luajit/luajit_2.0.1.bb | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/meta-oe/recipes-devtools/luajit/luajit_2.0.1.bb b/meta-oe/recipes-devtools/luajit/luajit_2.0.1.bb index 99a2ca6fb..6ca5f3494 100644 --- a/meta-oe/recipes-devtools/luajit/luajit_2.0.1.bb +++ b/meta-oe/recipes-devtools/luajit/luajit_2.0.1.bb | |||
@@ -4,11 +4,17 @@ LIC_FILES_CHKSUM = "file://COPYRIGHT;md5=1793ef52a5d577794cd886a501a7f861" | |||
4 | HOMEPAGE = "http://luajit.org" | 4 | HOMEPAGE = "http://luajit.org" |
5 | 5 | ||
6 | DEPENDS += "lua5.1" | 6 | DEPENDS += "lua5.1" |
7 | SRC_URI = "http://luajit.org/download/LuaJIT-${PV}.tar.gz \ | 7 | SRC_URI = "http://luajit.org/download/LuaJIT-${PV}.tar.gz;name=tarball \ |
8 | file://0001-Do-not-strip-automatically-this-leaves-the-stripping.patch \ | 8 | file://0001-Do-not-strip-automatically-this-leaves-the-stripping.patch \ |
9 | http://luajit.org/download/v2.0.1_hotfix1.patch;name=hotfix1 \ | ||
9 | " | 10 | " |
10 | SRC_URI[md5sum] = "85e406e8829602988eb1233a82e29f1f" | 11 | SRC_URI_append_fslmachine = " file://ppc-fixplt.patch " |
11 | SRC_URI[sha256sum] = "2371cceb53453d8a7b36451e6a0ccdb66236924545d6042ddd4c34e9668990c0" | 12 | |
13 | SRC_URI[tarball.md5sum] = "85e406e8829602988eb1233a82e29f1f" | ||
14 | SRC_URI[tarball.sha256sum] = "2371cceb53453d8a7b36451e6a0ccdb66236924545d6042ddd4c34e9668990c0" | ||
15 | |||
16 | SRC_URI[hotfix1.md5sum] = "5186c5901e37679a3c835d7b7cdac88e" | ||
17 | SRC_URI[hotfix1.sha256sum] = "143898de3fe84455684fddb92947d36c1a51c6a6e3884813fe5e025bd4652368" | ||
12 | 18 | ||
13 | S = "${WORKDIR}/LuaJIT-${PV}" | 19 | S = "${WORKDIR}/LuaJIT-${PV}" |
14 | 20 | ||