* [meta-oe][PATCH 0/1] fix build failure for luajit-native
@ 2015-06-12 9:06 Yi Zhao
2015-06-12 9:06 ` [meta-oe][PATCH 1/1] luajit: pass correct libdir Yi Zhao
0 siblings, 1 reply; 2+ messages in thread
From: Yi Zhao @ 2015-06-12 9:06 UTC (permalink / raw)
To: openembedded-devel
The following changes since commit a8b76a264155f4b9f6ba1bebe3ac87640a6f35ed:
cpufrequtils: Create proper symlinks to versioned library (2015-06-08 14:15:25 +0200)
are available in the git repository at:
git://git.openembedded.org/meta-openembedded-contrib yzhao/luajit-fix
http://cgit.openembedded.org/cgit.cgi/meta-openembedded-contrib/log/?h=yzhao/luajit-fix
Yi Zhao (1):
luajit: pass correct libdir
meta-oe/recipes-devtools/luajit/luajit_2.0.3.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--
1.7.9.5
^ permalink raw reply [flat|nested] 2+ messages in thread
* [meta-oe][PATCH 1/1] luajit: pass correct libdir
2015-06-12 9:06 [meta-oe][PATCH 0/1] fix build failure for luajit-native Yi Zhao
@ 2015-06-12 9:06 ` Yi Zhao
0 siblings, 0 replies; 2+ messages in thread
From: Yi Zhao @ 2015-06-12 9:06 UTC (permalink / raw)
To: openembedded-devel
When build luajit-native:
/buildarea2/build/tmp/sysroots/x86_64-linux/usr ====
| rmdir: failed to remove '/buildarea2/build/tmp/work/x86_64-linux/luajit-native/2.0.3-r0/image/buildarea2/build/tmp/sysroots/x86_64-linux/usr/lib/lua/5.*': No such file or directory
| rmdir: failed to remove '/buildarea2/build/tmp/work/x86_64-linux/luajit-native/2.0.3-r0/image/buildarea2/build/tmp/sysroots/x86_64-linux/usr/lib/lua': No such file or directory
| WARNING: exit code 1 from a shell command.
Use ${baselib} instead of ${base_libdir} for variable MULTILIB in
Makefile. Otherwise the INSTALL_LIB would extend to wrong path.
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
---
meta-oe/recipes-devtools/luajit/luajit_2.0.3.bb | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/meta-oe/recipes-devtools/luajit/luajit_2.0.3.bb b/meta-oe/recipes-devtools/luajit/luajit_2.0.3.bb
index b00138a..925cbcf 100644
--- a/meta-oe/recipes-devtools/luajit/luajit_2.0.3.bb
+++ b/meta-oe/recipes-devtools/luajit/luajit_2.0.3.bb
@@ -17,7 +17,7 @@ BBCLASSEXTEND = "native"
do_configure_prepend() {
sed -i 's:PREFIX= /usr/local:PREFIX= ${prefix}:g' ${S}/Makefile
- sed -i 's:MULTILIB= lib:MULTILIB= ${base_libdir}:g' ${S}/Makefile
+ sed -i 's:MULTILIB= lib:MULTILIB= ${baselib}:g' ${S}/Makefile
}
EXTRA_OEMAKE = 'CROSS=${HOST_PREFIX} \
--
1.7.9.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-06-12 9:06 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-12 9:06 [meta-oe][PATCH 0/1] fix build failure for luajit-native Yi Zhao
2015-06-12 9:06 ` [meta-oe][PATCH 1/1] luajit: pass correct libdir Yi Zhao
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.