Moved this into a class, it's still needed by a couple of recipes
This commit is contained in:
parent
2c396b28e5
commit
5fc9e4b462
25
meta-gnome/classes/meson-exe-wrapper.bbclass
Normal file
25
meta-gnome/classes/meson-exe-wrapper.bbclass
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
#
|
||||||
|
# 1) write out a wrapper script that can execute target binaries
|
||||||
|
#
|
||||||
|
# 2) add exe_wrapper line to the end of [binaries] section in the
|
||||||
|
# meson.cross file that meson.bbclass generated
|
||||||
|
#
|
||||||
|
setup_wrapper() {
|
||||||
|
if [ ! -e ${B}/wrapper ]; then
|
||||||
|
cat > ${B}/wrapper << EOF
|
||||||
|
#!/bin/sh
|
||||||
|
${STAGING_LIBDIR}/ld-linux-x86-64.so.2 --library-path ${STAGING_LIBDIR} \$@
|
||||||
|
EOF
|
||||||
|
chmod +x ${B}/wrapper
|
||||||
|
fi
|
||||||
|
|
||||||
|
if ! grep -q "^exe_wrapper" ${WORKDIR}/meson.cross; then
|
||||||
|
cat ${WORKDIR}/meson.cross | sed "/pkgconfig/ a\
|
||||||
|
exe_wrapper = '${B}/wrapper'" > ${WORKDIR}/meson.cross.tmp
|
||||||
|
mv ${WORKDIR}/meson.cross.tmp ${WORKDIR}/meson.cross
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
do_configure_prepend() {
|
||||||
|
setup_wrapper
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user