diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2023-03-08 09:40:17 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2023-03-14 17:47:40 +0000 |
| commit | d5a0300902bcc4408799a98bb781348d75fd7a54 (patch) | |
| tree | 4b1fb0c5cd3fe56ec464e5c5bcc940ad1d64152f /meta/recipes-devtools | |
| parent | 77e6375b6ec88f097b0aad0cb18314fd3e287be4 (diff) | |
| download | poky-d5a0300902bcc4408799a98bb781348d75fd7a54.tar.gz | |
vala: Fix install conflict when enable multilib.
Error: Transaction test error:
file /usr/bin/vala-gen-introspect-0.56 conflicts between attempted installs of lib32-vala-0.56.3-r0.armv7ahf_neon and vala-0.56.3-r0.aarch64
file /usr/bin/vapigen-wrapper conflicts between attempted installs
of lib32-vala-0.56.3-r0.armv7ahf_neon and vala-0.56.3-r0.aarch64
The differences of vala-gen-introspect-0.56 are as follows:
@@ -2,7 +2,7 @@
prefix=/usr
exec_prefix=/usr
-libdir=/usr/lib64
+libdir=/usr/lib
pkglibdir=${libdir}/vala-0.56
if [ $# -ne 2 ]
The wrapper isn't used on target so we can simply delete it.
(From OE-Core rev: 21e8a662e6232e7fdd642b1d86d4f8f980be1a09)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit 3cf894b8a9c4fa14fcc7c7445e85e9ae3192b398)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
| -rw-r--r-- | meta/recipes-devtools/vala/vala.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/recipes-devtools/vala/vala.inc b/meta/recipes-devtools/vala/vala.inc index d3daee37dc..162e99bb03 100644 --- a/meta/recipes-devtools/vala/vala.inc +++ b/meta/recipes-devtools/vala/vala.inc | |||
| @@ -50,6 +50,9 @@ do_install:append:class-target() { | |||
| 50 | # vapi files. | 50 | # vapi files. |
| 51 | SYSROOT_DIRS += "${bindir_crossscripts}" | 51 | SYSROOT_DIRS += "${bindir_crossscripts}" |
| 52 | 52 | ||
| 53 | inherit multilib_script | ||
| 54 | MULTILIB_SCRIPTS = "${PN}:${bindir}/vala-gen-introspect-0.56" | ||
| 55 | |||
| 53 | SYSROOT_PREPROCESS_FUNCS:append:class-target = " vapigen_sysroot_preprocess" | 56 | SYSROOT_PREPROCESS_FUNCS:append:class-target = " vapigen_sysroot_preprocess" |
| 54 | vapigen_sysroot_preprocess() { | 57 | vapigen_sysroot_preprocess() { |
| 55 | # Tweak the vapigen name in the vapigen pkgconfig file, so that it picks | 58 | # Tweak the vapigen name in the vapigen pkgconfig file, so that it picks |
| @@ -64,5 +67,5 @@ SSTATE_SCAN_FILES += "vapigen-wrapper" | |||
| 64 | PACKAGE_PREPROCESS_FUNCS += "vala_package_preprocess" | 67 | PACKAGE_PREPROCESS_FUNCS += "vala_package_preprocess" |
| 65 | 68 | ||
| 66 | vala_package_preprocess () { | 69 | vala_package_preprocess () { |
| 67 | sed -i -e 's:${RECIPE_SYSROOT}::g;' ${PKGD}${bindir_crossscripts}/vapigen-wrapper | 70 | rm -rf ${PKGD}${bindir_crossscripts} |
| 68 | } | 71 | } |
